python3Packages.prox-tv: ignore known MacOS failure

main
Victor "multun" Collod 2 years ago committed by Jonathan Ringer
parent 053c592cf2
commit faf72ce704
  1. 6
      pkgs/development/python-modules/prox-tv/default.nix

@ -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…
Cancel
Save