mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 23:36:17 +01:00
Merge pull request #330882 from Sigmanificient/neo
python312Packages.neo: drop nose dependency
This commit is contained in:
commit
c68bae3162
1 changed files with 12 additions and 5 deletions
|
@ -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 a new issue