Merge pull request #92905 from marsam/fix-pillow-darwin

python27Packages.pillow: fix build on darwin
This commit is contained in:
Mario Rodas
2020-07-11 13:22:58 -05:00
committed by GitHub

View File

@@ -22,7 +22,7 @@ buildPythonPackage rec {
checkPhase = ''
runHook preCheck
python -m pytest -v -x -W always
python -m pytest -v -x -W always${stdenv.lib.optionalString stdenv.isDarwin " --deselect=Tests/test_file_icns.py::TestFileIcns::test_save --deselect=Tests/test_imagegrab.py::TestImageGrab::test_grab"}
runHook postCheck
'';