about summary refs log tree commit diff
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2021-06-05 18:26:26 +0200
committerFabian Affolter <mail@fabian-affolter.ch>2021-06-05 20:36:54 +0200
commitfcc81afcbd3059d4ec1fc1af5d6aeaadf00e766b (patch)
tree51648150351d46ad28b03e2a422cc3260606e482
parent7fc0919351cc9f4c70905728bffbb900c08319c1 (diff)
downloadnixlib-fcc81afcbd3059d4ec1fc1af5d6aeaadf00e766b.tar
nixlib-fcc81afcbd3059d4ec1fc1af5d6aeaadf00e766b.tar.gz
nixlib-fcc81afcbd3059d4ec1fc1af5d6aeaadf00e766b.tar.bz2
nixlib-fcc81afcbd3059d4ec1fc1af5d6aeaadf00e766b.tar.lz
nixlib-fcc81afcbd3059d4ec1fc1af5d6aeaadf00e766b.tar.xz
nixlib-fcc81afcbd3059d4ec1fc1af5d6aeaadf00e766b.tar.zst
nixlib-fcc81afcbd3059d4ec1fc1af5d6aeaadf00e766b.zip
python3Packages.georss-ingv-centro-nazionale-terremoti-client: init at 0.4
-rw-r--r--pkgs/development/python-modules/georss-ingv-centro-nazionale-terremoti-client/default.nix37
-rw-r--r--pkgs/top-level/python-packages.nix2
2 files changed, 39 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/georss-ingv-centro-nazionale-terremoti-client/default.nix b/pkgs/development/python-modules/georss-ingv-centro-nazionale-terremoti-client/default.nix
new file mode 100644
index 000000000000..a4b317407ea2
--- /dev/null
+++ b/pkgs/development/python-modules/georss-ingv-centro-nazionale-terremoti-client/default.nix
@@ -0,0 +1,37 @@
+{ lib
+, buildPythonPackage
+, fetchFromGitHub
+, georss-client
+, pytestCheckHook
+, pythonOlder
+}:
+
+buildPythonPackage rec {
+  pname = "georss-ingv-centro-nazionale-terremoti-client";
+  version = "0.4";
+  disabled = pythonOlder "3.7";
+
+  src = fetchFromGitHub {
+    owner = "exxamalte";
+    repo = "python-georss-ingv-centro-nazionale-terremoti-client";
+    rev = "v${version}";
+    sha256 = "06qhxczznckb208bnfly0q5099scq1yj5rk67a6fqczpsmzcln6x";
+  };
+
+  propagatedBuildInputs = [
+    georss-client
+  ];
+
+  checkInputs = [
+    pytestCheckHook
+  ];
+
+  pythonImportsCheck = [ "georss_ingv_centro_nazionale_terremoti_client" ];
+
+  meta = with lib; {
+    description = "Python library for accessing the INGV Centro Nazionale Terremoti GeoRSS feed";
+    homepage = "https://github.com/exxamalte/python-georss-ingv-centro-nazionale-terremoti-client";
+    license = with licenses; [ asl20 ];
+    maintainers = with maintainers; [ fab ];
+  };
+}
diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix
index c850ce72af07..ca778e8fe20e 100644
--- a/pkgs/top-level/python-packages.nix
+++ b/pkgs/top-level/python-packages.nix
@@ -2750,6 +2750,8 @@ in {
 
   georss-ign-sismologia-client = callPackage ../development/python-modules/georss-ign-sismologia-client { };
 
+  georss-ingv-centro-nazionale-terremoti-client = callPackage ../development/python-modules/georss-ingv-centro-nazionale-terremoti-client { };
+
   georss-nrcan-earthquakes-client = callPackage ../development/python-modules/georss-nrcan-earthquakes-client { };
 
   georss-qld-bushfire-alert-client = callPackage ../development/python-modules/georss-qld-bushfire-alert-client { };