python3Packages.prox-tv: ignore known MacOS failure
This commit is contained in:
parent
053c592cf2
commit
faf72ce704
1 changed files with 6 additions and 0 deletions
|
@ -6,6 +6,7 @@
|
|||
, fetchFromGitHub
|
||||
, nose
|
||||
, numpy
|
||||
, stdenv
|
||||
}:
|
||||
|
||||
buildPythonPackage {
|
||||
|
@ -28,6 +29,11 @@ buildPythonPackage {
|
|||
cffi
|
||||
];
|
||||
|
||||
# this test is known to fail on darwin
|
||||
checkPhase = ''
|
||||
nosetests ${lib.optionalString stdenv.isDarwin " --exclude=test_tv2_1d"}
|
||||
'';
|
||||
|
||||
propagatedNativeBuildInputs = [ cffi ];
|
||||
|
||||
buildInputs = [ blas lapack ];
|
||||
|
|
Loading…
Reference in a new issue