Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / georss-wa-dfes-client / default.nix
blob170bae63567cd939044043398388ce4cf8ffa981
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , georss-client
5 , pytestCheckHook
6 , pythonOlder
7 }:
9 buildPythonPackage rec {
10   pname = "georss-wa-dfes-client";
11   version = "0.4";
12   format = "setuptools";
14   disabled = pythonOlder "3.7";
16   src = fetchFromGitHub {
17     owner = "exxamalte";
18     repo = "python-georss-wa-dfes-client";
19     rev = "v${version}";
20      hash = "sha256-s7qGTlWFdOtw0eMK7idld7HPOxO8CjODCmUi0WmRLdI=";
21   };
23   propagatedBuildInputs = [
24     georss-client
25   ];
27   nativeCheckInputs = [
28     pytestCheckHook
29   ];
31   pythonImportsCheck = [
32     "georss_wa_dfes_client"
33   ];
35   meta = with lib; {
36     description = "Python library for accessing WA Department of Fire and Emergency Services (DFES) feed";
37     homepage = "https://github.com/exxamalte/python-georss-wa-dfes-client";
38     license = with licenses; [ asl20 ];
39     maintainers = with maintainers; [ fab ];
40   };