evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / python-modules / georss-ign-sismologia-client / default.nix
blob133a68ba06e1410bbb2526b790ea6686f3d68557
2   lib,
3   buildPythonPackage,
4   dateparser,
5   fetchFromGitHub,
6   georss-client,
7   pytestCheckHook,
8   pythonOlder,
9   setuptools,
12 buildPythonPackage rec {
13   pname = "georss-ign-sismologia-client";
14   version = "0.8";
15   pyproject = true;
17   disabled = pythonOlder "3.8";
19   src = fetchFromGitHub {
20     owner = "exxamalte";
21     repo = "python-georss-ign-sismologia-client";
22     rev = "refs/tags/v${version}";
23     hash = "sha256-geIxF4GumxRoetJ6mIZCzI3pAvWjJJoY66aQYd2Mzik=";
24   };
26   nativeBuildInputs = [ setuptools ];
28   propagatedBuildInputs = [
29     dateparser
30     georss-client
31   ];
33   nativeCheckInputs = [ pytestCheckHook ];
35   pythonImportsCheck = [ "georss_ign_sismologia_client" ];
37   meta = with lib; {
38     description = "Python library for accessing the IGN Sismologia GeoRSS feed";
39     homepage = "https://github.com/exxamalte/python-georss-ign-sismologia-client";
40     changelog = "https://github.com/exxamalte/python-georss-ign-sismologia-client/blob/v0.6/CHANGELOG.md";
41     license = with licenses; [ asl20 ];
42     maintainers = with maintainers; [ fab ];
43   };