mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-28 15:54:32 +00:00
python3Packages.geopandas: fix build with fiona >= 1.8.16
This commit is contained in:
parent
1a75fd3940
commit
107c9a7909
@ -1,6 +1,6 @@
|
|||||||
{ stdenv, buildPythonPackage, fetchFromGitHub, isPy27
|
{ stdenv, buildPythonPackage, fetchFromGitHub, isPy27
|
||||||
, pandas, shapely, fiona, descartes, pyproj
|
, pandas, shapely, fiona, descartes, pyproj
|
||||||
, pytest, Rtree, fetchpatch }:
|
, pytestCheckHook, Rtree, fetchpatch }:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "geopandas";
|
pname = "geopandas";
|
||||||
@ -20,13 +20,18 @@ buildPythonPackage rec {
|
|||||||
url = "https://github.com/geopandas/geopandas/pull/1544/commits/6ce868a33a2f483b071089d51e178030fa4414d0.patch";
|
url = "https://github.com/geopandas/geopandas/pull/1544/commits/6ce868a33a2f483b071089d51e178030fa4414d0.patch";
|
||||||
sha256 = "1sjgxrqgbhz5krx51hrv230ywszcdl6z8q3bj6830kfad8n8b5dq";
|
sha256 = "1sjgxrqgbhz5krx51hrv230ywszcdl6z8q3bj6830kfad8n8b5dq";
|
||||||
})
|
})
|
||||||
|
# Fix GeoJSON for Fiona>=1.8.16 (Sep. 7, 2020).
|
||||||
|
# https://github.com/geopandas/geopandas/issues/1606
|
||||||
|
# Will be included in next upstream release after 0.8.1
|
||||||
|
(fetchpatch {
|
||||||
|
url = "https://github.com/geopandas/geopandas/commit/72427d3d8c128039bfce1d54a76c0b652887b276.patch";
|
||||||
|
sha256 = "1726mrpddgmba0ngff73a5bsb6ywpsg63a2pdd2grp9339bgvi4a";
|
||||||
|
})
|
||||||
];
|
];
|
||||||
|
|
||||||
checkInputs = [ pytest Rtree ];
|
checkInputs = [ pytestCheckHook Rtree ];
|
||||||
|
disabledTests = [ "web" ];
|
||||||
checkPhase = ''
|
pytestFlagsArray = [ "geopandas" ];
|
||||||
py.test geopandas -m "not web"
|
|
||||||
'';
|
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
pandas
|
pandas
|
||||||
|
Loading…
Reference in New Issue
Block a user