pythonPackages.shapely: fix tests, switch to pytestCheckHook

This commit is contained in:
Sandro Jäckel
2021-02-22 09:28:56 +01:00
parent 31fe1f430e
commit 18370cd9d0

View File

@@ -1,5 +1,5 @@
{ lib, stdenv, buildPythonPackage, fetchPypi, fetchpatch, substituteAll, pythonOlder
, geos, pytest, cython
, geos, pytestCheckHook, cython
, numpy
}:
@@ -18,10 +18,10 @@ buildPythonPackage rec {
cython
];
checkInputs = [ pytest ];
propagatedBuildInputs = [ numpy ];
checkInputs = [ pytestCheckHook ];
# environment variable used in shapely/_buildcfg.py
GEOS_LIBRARY_PATH = "${geos}/lib/libgeos_c${stdenv.hostPlatform.extensions.sharedLibrary}";
@@ -38,12 +38,14 @@ buildPythonPackage rec {
})
];
# Disable the tests that improperly try to use the built extensions
checkPhase = ''
preCheck = ''
rm -r shapely # prevent import of local shapely
py.test tests
'';
disabledTests = [
"test_collection"
];
meta = with lib; {
description = "Geometric objects, predicates, and operations";
maintainers = with maintainers; [ knedlsepp ];