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
commit b6b8f3993c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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
'';