python3Packages.prox-tv: ignore known MacOS failure

This commit is contained in:
Victor "multun" Collod 2022-05-09 22:15:14 +02:00 committed by Jonathan Ringer
parent 053c592cf2
commit faf72ce704

View file

@ -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 ];