Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / georss-generic-client / default.nix
blobb3679a93a2fd31c4de9de4fe86a8dedcac46a15e
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , georss-client
5 , pytestCheckHook
6 , pythonOlder
7 }:
9 buildPythonPackage rec {
10   pname = "georss-generic-client";
11   version = "0.8";
12   format = "setuptools";
13   disabled = pythonOlder "3.7";
15   src = fetchFromGitHub {
16     owner = "exxamalte";
17     repo = "python-georss-generic-client";
18     rev = "v${version}";
19     hash = "sha256-Y19zMHL6DjAqiDi47Lmst8m9d9kEtTgyRiECKo6CqZY=";
20   };
22   propagatedBuildInputs = [
23     georss-client
24   ];
26   nativeCheckInputs = [
27     pytestCheckHook
28   ];
30   pythonImportsCheck = [ "georss_generic_client" ];
32   meta = with lib; {
33     description = "Python library for accessing generic GeoRSS feeds";
34     homepage = "https://github.com/exxamalte/python-georss-generic-client";
35     license = with licenses; [ asl20 ];
36     maintainers = with maintainers; [ fab ];
37   };