mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-13 21:50:33 +03:00
python3Packages.geopandas: 0.8.1 → 0.9.0
This commit is contained in:
parent
875e4abc7d
commit
e13f126c4b
1 changed files with 11 additions and 23 deletions
|
@ -1,45 +1,33 @@
|
||||||
{ lib, stdenv, buildPythonPackage, fetchFromGitHub, isPy27
|
{ lib, stdenv, buildPythonPackage, fetchFromGitHub, pythonOlder
|
||||||
, pandas, shapely, fiona, descartes, pyproj
|
, pandas, shapely, fiona, pyproj
|
||||||
, pytestCheckHook, Rtree, fetchpatch }:
|
, pytestCheckHook, Rtree }:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "geopandas";
|
pname = "geopandas";
|
||||||
version = "0.8.1";
|
version = "0.9.0";
|
||||||
disabled = isPy27;
|
disabled = pythonOlder "3.6";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "geopandas";
|
owner = "geopandas";
|
||||||
repo = "geopandas";
|
repo = "geopandas";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "0618p0s0biisxk2s0h43hkc3bs1nwjk84rxbfyd6brfvs9yx4vq7";
|
sha256 = "sha256-58X562OkRzZ4UTNMTwXW4U5czoa5tbSMBCcE90DqbaE=";
|
||||||
};
|
};
|
||||||
|
|
||||||
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";
|
|
||||||
})
|
|
||||||
# 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";
|
|
||||||
})
|
|
||||||
];
|
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
pandas
|
pandas
|
||||||
shapely
|
shapely
|
||||||
fiona
|
fiona
|
||||||
descartes
|
|
||||||
pyproj
|
pyproj
|
||||||
];
|
];
|
||||||
|
|
||||||
doCheck = !stdenv.isDarwin;
|
doCheck = !stdenv.isDarwin;
|
||||||
checkInputs = [ pytestCheckHook Rtree ];
|
checkInputs = [ pytestCheckHook Rtree ];
|
||||||
disabledTests = [ "web" ];
|
disabledTests = [
|
||||||
|
# requires network access
|
||||||
|
"test_read_file_remote_geojson_url"
|
||||||
|
"test_read_file_remote_zipfile_url"
|
||||||
|
];
|
||||||
pytestFlagsArray = [ "geopandas" ];
|
pytestFlagsArray = [ "geopandas" ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue