nixpkgs/pkgs/development/python-modules/geopandas/default.nix
2017-09-05 08:20:30 +01:00

37 lines
742 B
Nix

{ stdenv, buildPythonPackage, fetchFromGitHub
, pandas, shapely, fiona, descartes, pyproj
, pytest }:
buildPythonPackage rec {
name = "geopandas-${version}";
version = "0.3.0";
src = fetchFromGitHub {
owner = "geopandas";
repo = "geopandas";
rev = "v${version}";
sha256 = "0maafafr7sjjmlg2f19bizg06c8a5z5igmbcgq6kgmi7rklx8xxz";
};
checkInputs = [ pytest ];
checkPhase = ''
py.test geopandas
'';
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 ];
};
}