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

This commit is contained in:
Martin Weinelt 2024-07-08 22:34:50 +02:00
parent 48b283e71f
commit cb1a1c9164
No known key found for this signature in database
GPG Key ID: 87C1E9888F856759

View File

@ -3,7 +3,7 @@
blockdiag,
buildPythonPackage,
fetchFromGitHub,
pynose,
nose,
pytestCheckHook,
pythonOlder,
setuptools,
@ -27,8 +27,11 @@ buildPythonPackage rec {
propagatedBuildInputs = [ blockdiag ];
# tests rely on nose
doCheck = pythonOlder "3.12";
nativeCheckInputs = [
pynose
nose
pytestCheckHook
];