Files
nixpkgs/pkgs/development/python-modules/geopandas/default.nix
T

38 lines
790 B
Nix
Raw Normal View History

2017-09-05 08:20:30 +01:00
{ stdenv, buildPythonPackage, fetchFromGitHub
, pandas, shapely, fiona, descartes, pyproj
2018-09-06 12:13:27 -04:00
, pytest, Rtree }:
2017-09-03 09:06:33 +00:00
buildPythonPackage rec {
pname = "geopandas";
2018-09-06 12:13:27 -04:00
version = "0.4.0";
name = pname + "-" + version;
2017-09-03 09:06:33 +00:00
2017-09-05 08:20:30 +01:00
src = fetchFromGitHub {
owner = "geopandas";
repo = "geopandas";
rev = "v${version}";
2018-09-06 12:13:27 -04:00
sha256 = "025zpgck5pnmidvzk0805pr345rd7k6z66qb2m34gjh1814xjkhv";
2017-09-03 09:06:33 +00:00
};
2018-09-06 12:13:27 -04:00
checkInputs = [ pytest Rtree ];
2017-09-05 08:20:30 +01:00
checkPhase = ''
2018-09-06 12:13:27 -04:00
py.test geopandas -m "not web"
2017-09-05 08:20:30 +01:00
'';
2017-09-03 09:06:33 +00: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 ];
};
}