tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
python3Packages.geopandas: fix tests
Robert Schütz
4 years ago
7e6325ef
042eebd8
+14
-1
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
geopandas
default.nix
+14
-1
pkgs/development/python-modules/geopandas/default.nix
···
1
1
-
{ lib, stdenv, buildPythonPackage, fetchFromGitHub, pythonOlder
1
1
+
{ lib, stdenv, buildPythonPackage, fetchFromGitHub, fetchpatch, pythonOlder
2
2
, pandas, shapely, fiona, pyproj
3
3
, pytestCheckHook, Rtree }:
4
4
···
13
13
rev = "v${version}";
14
14
sha256 = "sha256-58X562OkRzZ4UTNMTwXW4U5czoa5tbSMBCcE90DqbaE=";
15
15
};
16
16
+
17
17
+
patches = [
18
18
+
(fetchpatch {
19
19
+
name = "skip-pandas-master-fillna-test.patch";
20
20
+
url = "https://github.com/geopandas/geopandas/pull/1878.patch";
21
21
+
sha256 = "1yw3i4dbhaq7f02n329b9y2cqxbwlz9db81mhgrfc7af3whwysdb";
22
22
+
})
23
23
+
(fetchpatch {
24
24
+
name = "fix-proj4strings-test.patch";
25
25
+
url = "https://github.com/geopandas/geopandas/pull/1958.patch";
26
26
+
sha256 = "0kzmpq5ry87yvhqr6gnh9p2606b06d3ynzjvw0hpp9fncczpc2yn";
27
27
+
})
28
28
+
];
16
29
17
30
propagatedBuildInputs = [
18
31
pandas