python312Packages.pprintpp: revert to nose, disable tests on 3.12

This commit is contained in:
Martin Weinelt 2024-07-08 23:28:35 +02:00
parent 15c1730967
commit 14956c0eff
No known key found for this signature in database
GPG Key ID: 87C1E9888F856759

View File

@ -3,10 +3,9 @@
buildPythonPackage,
fetchpatch,
fetchPypi,
nose,
parameterized,
pytestCheckHook,
pynose,
python,
pythonOlder,
setuptools,
}:
@ -39,9 +38,12 @@ buildPythonPackage rec {
build-system = [ setuptools ];
# tests rely on nose
doCheck = pythonOlder "3.12";
nativeCheckInputs = [
nose
parameterized
pynose
pytestCheckHook
];