python3Packages.pyclipper: enable tests

This commit is contained in:
Robert Scott 2021-08-20 19:43:15 +01:00
parent 8d14dc9157
commit b438f0fb98

View File

@ -3,6 +3,8 @@
, buildPythonPackage
, setuptools-scm
, cython
, pytestCheckHook
, unittest2
}:
buildPythonPackage rec {
@ -20,10 +22,7 @@ buildPythonPackage rec {
cython
];
# Requires pytest_runner to perform tests, which requires deprecated
# features of setuptools. Seems better to not run tests. This should
# be fixed upstream.
doCheck = false;
checkInputs = [ pytestCheckHook unittest2 ];
pythonImportsCheck = [ "pyclipper" ];
meta = with lib; {