ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / georss-ign-sismologia-client / default.nix
blobae923138d2959bb9ac1c347e334bd70e43bde024
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , georss-client
5 , pytestCheckHook
6 , pythonOlder
7 }:
9 buildPythonPackage rec {
10   pname = "georss-ign-sismologia-client";
11   version = "0.5";
12   format = "setuptools";
14   disabled = pythonOlder "3.7";
16   src = fetchFromGitHub {
17     owner = "exxamalte";
18     repo = "python-georss-ign-sismologia-client";
19     rev = "v${version}";
20     hash = "sha256-i3VdxntFwieCmB4ihHRSCV5YKDyYytl3XnU/G1LwLhg=";
21   };
23   propagatedBuildInputs = [
24     georss-client
25   ];
27   checkInputs = [
28     pytestCheckHook
29   ];
31   pythonImportsCheck = [
32     "georss_ign_sismologia_client"
33   ];
35   meta = with lib; {
36     description = "Python library for accessing the IGN Sismologia GeoRSS feed";
37     homepage = "https://github.com/exxamalte/python-georss-ign-sismologia-client";
38     license = with licenses; [ asl20 ];
39     maintainers = with maintainers; [ fab ];
40   };