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 , fetchFromGitHub
, nose , nose
, numpy , numpy
, stdenv
}: }:
buildPythonPackage { buildPythonPackage {
@ -28,6 +29,11 @@ buildPythonPackage {
cffi cffi
]; ];
# this test is known to fail on darwin
checkPhase = ''
nosetests ${lib.optionalString stdenv.isDarwin " --exclude=test_tv2_1d"}
'';
propagatedNativeBuildInputs = [ cffi ]; propagatedNativeBuildInputs = [ cffi ];
buildInputs = [ blas lapack ]; buildInputs = [ blas lapack ];