pythonPackages.shapely: fix tests, switch to pytestCheckHook

wip/yesman
Sandro Jäckel 3 years ago
parent 31fe1f430e
commit 18370cd9d0
No known key found for this signature in database
GPG Key ID: 3AF5A43A3EECC2E5
  1. 14
      pkgs/development/python-modules/shapely/default.nix

@ -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 ];

Loading…
Cancel
Save