38 lines
788 B
Nix
38 lines
788 B
Nix
|
{ stdenv, buildPythonPackage, fetchFromGitHub, isPy27
|
||
|
, pandas, shapely, fiona, descartes, pyproj
|
||
|
, pytest, Rtree }:
|
||
|
|
||
|
buildPythonPackage rec {
|
||
|
pname = "geopandas";
|
||
|
version = "0.7.0";
|
||
|
disabled = isPy27;
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "geopandas";
|
||
|
repo = "geopandas";
|
||
|
rev = "v${version}";
|
||
|
sha256 = "0cfdvl4cvi0nim1qbmzf7vg0all272i8r0kj4xgdd0hr2j4jdg9p";
|
||
|
};
|
||
|
|
||
|
checkInputs = [ pytest Rtree ];
|
||
|
|
||
|
checkPhase = ''
|
||
|
py.test geopandas -m "not web"
|
||
|
'';
|
||
|
|
||
|
propagatedBuildInputs = [
|
||
|
pandas
|
||
|
shapely
|
||
|
fiona
|
||
|
descartes
|
||
|
pyproj
|
||
|
];
|
||
|
|
||
|
meta = with stdenv.lib; {
|
||
|
description = "Python geospatial data analysis framework";
|
||
|
homepage = "http://geopandas.org";
|
||
|
license = licenses.bsd3;
|
||
|
maintainers = with maintainers; [ knedlsepp ];
|
||
|
};
|
||
|
}
|