python312Packages.neo: drop nose dependency

This commit is contained in:
Sigmanificient 2024-07-29 17:33:01 +02:00
parent fc5e08c730
commit 3dea5add9d

View File

@ -2,12 +2,14 @@
lib,
buildPythonPackage,
fetchPypi,
nose,
numpy,
packaging,
quantities,
pythonOlder,
setuptools,
pytestCheckHook,
pillow,
which,
}:
buildPythonPackage rec {
@ -30,11 +32,16 @@ buildPythonPackage rec {
quantities
];
nativeCheckInputs = [ nose ];
nativeCheckInputs = [
pytestCheckHook
pillow
which
];
checkPhase = ''
nosetests --exclude=iotest
'';
disabledTestPaths = [
# Requires network and export HOME dir
"neo/test/rawiotest/test_maxwellrawio.py"
];
pythonImportsCheck = [ "neo" ];