315be87440
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.7-geopandas/versions
38 lines
790 B
Nix
38 lines
790 B
Nix
{ stdenv, buildPythonPackage, fetchFromGitHub
|
|
, pandas, shapely, fiona, descartes, pyproj
|
|
, pytest, Rtree }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "geopandas";
|
|
version = "0.5.0";
|
|
name = pname + "-" + version;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "geopandas";
|
|
repo = "geopandas";
|
|
rev = "v${version}";
|
|
sha256 = "0gmqksjgxrng52jvjk0ylkpsg0qriygb10b7n80l28kdz6c0givj";
|
|
};
|
|
|
|
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 = https://geopandas.org;
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ knedlsepp ];
|
|
};
|
|
}
|