about summary refs log tree commit diff
path: root/pkgs/development/python-modules/pyepsg
diff options
context:
space:
mode:
authorMassimo Redaelli <m.redaelli@gmail.com>2018-11-25 10:15:30 +0100
committerMassimo Redaelli <massimo.redaelli@celsiuspro.com>2018-11-26 13:49:35 +0100
commitd9d8bcbb99f6d025979271cddfffc04a01d23727 (patch)
treea1d94ce187471e6d1917474a52deb237e2a68bb7 /pkgs/development/python-modules/pyepsg
parent962bc254a0dfb80d36191321fb8e2ebdc5ff923b (diff)
pythonPackages.pyepsg: init at 0.3.2
Diffstat (limited to 'pkgs/development/python-modules/pyepsg')
-rw-r--r--pkgs/development/python-modules/pyepsg/default.nix23
1 files changed, 23 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/pyepsg/default.nix b/pkgs/development/python-modules/pyepsg/default.nix
new file mode 100644
index 0000000000000..dd8c987401d14
--- /dev/null
+++ b/pkgs/development/python-modules/pyepsg/default.nix
@@ -0,0 +1,23 @@
+{ buildPythonPackage, lib, fetchPypi, requests }:
+
+buildPythonPackage rec {
+  pname = "pyepsg";
+  version = "0.3.2";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "0ng0k140kzq3xcffi4vy10py4cmwzfy8anccysw3vgn1x30ghzjr";
+  };
+
+  propagatedBuildInputs = [ requests ];
+
+  doCheck = false;
+
+  meta = with lib; {
+    description = "Simple Python interface to epsg.io";
+    license = licenses.lgpl3;
+    homepage = https://pyepsg.readthedocs.io/en/latest/;
+    maintainers = with maintainers; [ mredaelli ];
+  };
+
+}