python3Packages.nibabel: disable failing test
This commit is contained in:
parent
0cee23629e
commit
bc524e8b3c
1 changed files with 8 additions and 5 deletions
|
@ -3,7 +3,7 @@
|
|||
, fetchPypi
|
||||
, isPy27
|
||||
, packaging
|
||||
, pytest
|
||||
, pytestCheckHook
|
||||
, nose
|
||||
, numpy
|
||||
, h5py
|
||||
|
@ -23,11 +23,14 @@ buildPythonPackage rec {
|
|||
|
||||
propagatedBuildInputs = [ numpy scipy h5py packaging pydicom ];
|
||||
|
||||
checkInputs = [ nose pytest ];
|
||||
checkInputs = [
|
||||
pytestCheckHook
|
||||
];
|
||||
|
||||
checkPhase = ''
|
||||
pytest
|
||||
'';
|
||||
disabledTests = [
|
||||
# https://github.com/nipy/nibabel/issues/951
|
||||
"test_filenames"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://nipy.org/nibabel";
|
||||
|
|
Loading…
Reference in a new issue