about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorqq <0qqw0qqw@gmail.com>2021-02-22 21:48:01 +0300
committerqq <0qqw0qqw@gmail.com>2021-02-22 23:00:13 +0300
commitaf15d4f74f58e09f68207e30c70ef2e7e565a774 (patch)
treed4d0e2ccc189dcfac480844453d293cf84f2c8f1 /pkgs
parent148eff94b383b5b0bd247e32d03a7d224e142598 (diff)
python38Packages.shapely: fix failing test
The test_svg fails on checkPhase so the package can't be build.
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/python-modules/shapely/default.nix9
1 files changed, 7 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/shapely/default.nix b/pkgs/development/python-modules/shapely/default.nix
index b5dd0be5445c5..b5875818b952c 100644
--- a/pkgs/development/python-modules/shapely/default.nix
+++ b/pkgs/development/python-modules/shapely/default.nix
@@ -1,4 +1,4 @@
-{ lib, stdenv, buildPythonPackage, fetchPypi, substituteAll, pythonOlder
+{ lib, stdenv, buildPythonPackage, fetchPypi, fetchpatch, substituteAll, pythonOlder
 , geos, pytest, cython
 , numpy
 }:
@@ -31,7 +31,12 @@ buildPythonPackage rec {
       libgeos_c = GEOS_LIBRARY_PATH;
       libc = lib.optionalString (!stdenv.isDarwin) "${stdenv.cc.libc}/lib/libc${stdenv.hostPlatform.extensions.sharedLibrary}.6";
     })
-  ];
+   # included in next release.
+   (fetchpatch {
+     url = "https://github.com/Toblerity/Shapely/commit/ea5b05a0c87235d3d8f09930ad47c396a76c8b0c.patch";
+     sha256 = "sha256-egdydlV+tpXosSQwQFHaXaeBhXEHAs+mn7vLUDpvybA=";
+   })
+ ];
 
   # Disable the tests that improperly try to use the built extensions
   checkPhase = ''