pythonPackages.geopandas: init at 0.3.0

This commit is contained in:
Josef Kemetmueller 2017-09-03 09:06:33 +00:00
parent aad9a691ab
commit 05ac3f9520
2 changed files with 30 additions and 0 deletions

View file

@ -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 ];
};
}

View file

@ -10725,6 +10725,8 @@ in {
};
geopandas = callPackage ../development/python-modules/geopandas { };
gevent-websocket = buildPythonPackage rec {
name = "gevent-websocket-0.9.3";