python3Packages.geopandas: fix tests

+14 -1
+14 -1
pkgs/development/python-modules/geopandas/default.nix
··· 1 - { lib, stdenv, buildPythonPackage, fetchFromGitHub, pythonOlder 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 + 17 + patches = [ 18 + (fetchpatch { 19 + name = "skip-pandas-master-fillna-test.patch"; 20 + url = "https://github.com/geopandas/geopandas/pull/1878.patch"; 21 + sha256 = "1yw3i4dbhaq7f02n329b9y2cqxbwlz9db81mhgrfc7af3whwysdb"; 22 + }) 23 + (fetchpatch { 24 + name = "fix-proj4strings-test.patch"; 25 + url = "https://github.com/geopandas/geopandas/pull/1958.patch"; 26 + sha256 = "0kzmpq5ry87yvhqr6gnh9p2606b06d3ynzjvw0hpp9fncczpc2yn"; 27 + }) 28 + ]; 16 29 17 30 propagatedBuildInputs = [ 18 31 pandas