2017-09-05 08:20:30 +01:00
|
|
|
{ stdenv, buildPythonPackage, fetchFromGitHub
|
|
|
|
, pandas, shapely, fiona, descartes, pyproj
|
2018-09-06 17:13:27 +01:00
|
|
|
, pytest, Rtree }:
|
2017-09-03 10:06:33 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2017-11-09 11:26:09 +00:00
|
|
|
pname = "geopandas";
|
2019-10-15 23:07:07 +01:00
|
|
|
version = "0.6.1";
|
2017-09-03 10:06:33 +01:00
|
|
|
|
2017-09-05 08:20:30 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "geopandas";
|
|
|
|
repo = "geopandas";
|
|
|
|
rev = "v${version}";
|
2019-10-15 23:07:07 +01:00
|
|
|
sha256 = "0bdgphw43m2nrgcp83j1pnxknnzahm2zmdr55hyz3jjkva7m6dpk";
|
2017-09-03 10:06:33 +01:00
|
|
|
};
|
|
|
|
|
2018-09-06 17:13:27 +01:00
|
|
|
checkInputs = [ pytest Rtree ];
|
2017-09-05 08:20:30 +01:00
|
|
|
|
|
|
|
checkPhase = ''
|
2018-09-06 17:13:27 +01:00
|
|
|
py.test geopandas -m "not web"
|
2017-09-05 08:20:30 +01:00
|
|
|
'';
|
|
|
|
|
2017-09-03 10:06:33 +01:00
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|