mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-03 20:33:21 +00:00
python312Packages.neo: drop nose dependency
This commit is contained in:
parent
fc5e08c730
commit
3dea5add9d
@ -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" ];
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user