python38Packages.shapely: fix failing test
The test_svg fails on checkPhase so the package can't be build.
This commit is contained in:
parent
148eff94b3
commit
af15d4f74f
1 changed files with 7 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
||||||
{ lib, stdenv, buildPythonPackage, fetchPypi, substituteAll, pythonOlder
|
{ lib, stdenv, buildPythonPackage, fetchPypi, fetchpatch, substituteAll, pythonOlder
|
||||||
, geos, pytest, cython
|
, geos, pytest, cython
|
||||||
, numpy
|
, numpy
|
||||||
}:
|
}:
|
||||||
|
@ -31,7 +31,12 @@ buildPythonPackage rec {
|
||||||
libgeos_c = GEOS_LIBRARY_PATH;
|
libgeos_c = GEOS_LIBRARY_PATH;
|
||||||
libc = lib.optionalString (!stdenv.isDarwin) "${stdenv.cc.libc}/lib/libc${stdenv.hostPlatform.extensions.sharedLibrary}.6";
|
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
|
# Disable the tests that improperly try to use the built extensions
|
||||||
checkPhase = ''
|
checkPhase = ''
|
||||||
|
|
Loading…
Reference in a new issue