2020-03-19 11:32:06 -07:00
|
|
|
{ stdenv, buildPythonPackage, fetchFromGitHub, isPy27
|
2017-09-05 00:20:30 -07:00
|
|
|
, pandas, shapely, fiona, descartes, pyproj
|
2020-09-12 23:56:44 -07:00
|
|
|
, pytest, Rtree, fetchpatch }:
|
2017-09-03 02:06:33 -07:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2017-11-09 03:26:09 -08:00
|
|
|
pname = "geopandas";
|
2020-09-12 23:56:44 -07:00
|
|
|
version = "0.8.1";
|
2020-03-19 11:32:06 -07:00
|
|
|
disabled = isPy27;
|
2017-09-03 02:06:33 -07:00
|
|
|
|
2017-09-05 00:20:30 -07:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "geopandas";
|
|
|
|
repo = "geopandas";
|
|
|
|
rev = "v${version}";
|
2020-09-12 23:56:44 -07:00
|
|
|
sha256 = "0618p0s0biisxk2s0h43hkc3bs1nwjk84rxbfyd6brfvs9yx4vq7";
|
2017-09-03 02:06:33 -07:00
|
|
|
};
|
|
|
|
|
2020-09-12 23:56:44 -07:00
|
|
|
patches = [
|
|
|
|
# Fix for test test_numerical_operations: https://github.com/geopandas/geopandas/issues/1541
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://github.com/geopandas/geopandas/pull/1544/commits/6ce868a33a2f483b071089d51e178030fa4414d0.patch";
|
|
|
|
sha256 = "1sjgxrqgbhz5krx51hrv230ywszcdl6z8q3bj6830kfad8n8b5dq";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2018-09-06 09:13:27 -07:00
|
|
|
checkInputs = [ pytest Rtree ];
|
2017-09-05 00:20:30 -07:00
|
|
|
|
|
|
|
checkPhase = ''
|
2018-09-06 09:13:27 -07:00
|
|
|
py.test geopandas -m "not web"
|
2017-09-05 00:20:30 -07:00
|
|
|
'';
|
|
|
|
|
2017-09-03 02:06:33 -07:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
pandas
|
|
|
|
shapely
|
|
|
|
fiona
|
|
|
|
descartes
|
|
|
|
pyproj
|
|
|
|
];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Python geospatial data analysis framework";
|
2020-04-24 08:01:20 -07:00
|
|
|
homepage = "https://geopandas.org";
|
2017-09-03 02:06:33 -07:00
|
|
|
license = licenses.bsd3;
|
|
|
|
maintainers = with maintainers; [ knedlsepp ];
|
|
|
|
};
|
|
|
|
}
|