summary refs log tree commit diff
path: root/pkgs/development/python-modules/geopandas
diff options
context:
space:
mode:
authorJosef Kemetmueller <josef.kemetmueller@gmail.com>2017-09-03 09:06:33 +0000
committerJosef Kemetmueller <josef.kemetmueller@gmail.com>2017-09-04 22:23:41 +0200
commit05ac3f95209ed3b233191c9ffe6123c542726259 (patch)
treebf7e1a0df5cc4d8625af3b09dfaca2612f7c69bb /pkgs/development/python-modules/geopandas
parentaad9a691ab8905031c499f6cabd7284e596a079d (diff)
downloadnixpkgs-05ac3f95209ed3b233191c9ffe6123c542726259.tar
nixpkgs-05ac3f95209ed3b233191c9ffe6123c542726259.tar.gz
nixpkgs-05ac3f95209ed3b233191c9ffe6123c542726259.tar.bz2
nixpkgs-05ac3f95209ed3b233191c9ffe6123c542726259.tar.lz
nixpkgs-05ac3f95209ed3b233191c9ffe6123c542726259.tar.xz
nixpkgs-05ac3f95209ed3b233191c9ffe6123c542726259.tar.zst
nixpkgs-05ac3f95209ed3b233191c9ffe6123c542726259.zip
pythonPackages.geopandas: init at 0.3.0
Diffstat (limited to 'pkgs/development/python-modules/geopandas')
-rw-r--r--pkgs/development/python-modules/geopandas/default.nix28
1 files changed, 28 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/geopandas/default.nix b/pkgs/development/python-modules/geopandas/default.nix
new file mode 100644
index 00000000000..c048f9d01ed
--- /dev/null
+++ b/pkgs/development/python-modules/geopandas/default.nix
@@ -0,0 +1,28 @@
+{ stdenv, buildPythonPackage, fetchPypi,
+  pandas, shapely, fiona, descartes, pyproj }:
+
+buildPythonPackage rec {
+  pname = "geopandas";
+  version = "0.3.0";
+  name = "${pname}-${version}";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "02wj58aqyq1nr0axz2vci72zvpkmalrj570lrndqqvai7qmb6fz6";
+  };
+
+  propagatedBuildInputs = [
+    pandas
+    shapely
+    fiona
+    descartes
+    pyproj
+  ];
+
+  meta = with stdenv.lib; {
+    description = "Python geospatial data analysis framework";
+    homepage = https://geopandas.org;
+    license = licenses.bsd3;
+    maintainers = with maintainers; [ knedlsepp ];
+  };
+}