summary refs log tree commit diff
path: root/pkgs/development/python-modules/fiona
diff options
context:
space:
mode:
authorJosef Kemetmueller <josef.kemetmueller@gmail.com>2017-09-03 09:05:57 +0000
committerJosef Kemetmueller <josef.kemetmueller@gmail.com>2017-09-04 22:23:40 +0200
commitaad9a691ab8905031c499f6cabd7284e596a079d (patch)
treea47a1538c49ecaaa1c418d247b746afe2ae5b69d /pkgs/development/python-modules/fiona
parentf039bb6b4ec5778a95068f36cd3eedf0bed98cf8 (diff)
downloadnixpkgs-aad9a691ab8905031c499f6cabd7284e596a079d.tar
nixpkgs-aad9a691ab8905031c499f6cabd7284e596a079d.tar.gz
nixpkgs-aad9a691ab8905031c499f6cabd7284e596a079d.tar.bz2
nixpkgs-aad9a691ab8905031c499f6cabd7284e596a079d.tar.lz
nixpkgs-aad9a691ab8905031c499f6cabd7284e596a079d.tar.xz
nixpkgs-aad9a691ab8905031c499f6cabd7284e596a079d.tar.zst
nixpkgs-aad9a691ab8905031c499f6cabd7284e596a079d.zip
pythonPackages.fiona: init at 1.7.9
Diffstat (limited to 'pkgs/development/python-modules/fiona')
-rw-r--r--pkgs/development/python-modules/fiona/default.nix41
1 files changed, 41 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/fiona/default.nix b/pkgs/development/python-modules/fiona/default.nix
new file mode 100644
index 00000000000..42e8e423bdd
--- /dev/null
+++ b/pkgs/development/python-modules/fiona/default.nix
@@ -0,0 +1,41 @@
+{ stdenv, buildPythonPackage, fetchPypi,
+  six, cligj, munch, click-plugins, enum34, pytest, nose,
+  gdal
+}:
+
+buildPythonPackage rec {
+  pname = "Fiona";
+  version = "1.7.9";
+  name = "${pname}-${version}";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "1fmdgpfnifaqfqwkfiwkpk19wmpi9avmh8a7jqylqi578jvp3fwi";
+  };
+
+  buildInputs = [
+    gdal
+  ];
+
+  propagatedBuildInputs = [
+    six
+    cligj
+    munch
+    click-plugins
+    enum34
+  ];
+
+  checkInputs = [
+    pytest
+    nose
+  ];
+
+  doCheck = false;
+
+  meta = with stdenv.lib; {
+    description = "OGR's neat, nimble, no-nonsense API for Python";
+    homepage = http://toblerity.org/fiona/;
+    license = licenses.bsd3;
+    maintainers = with maintainers; [ knedlsepp ];
+  };
+}