python3Packages.pillow: 8.3.1 -> 8.3.2

disable test test_pyroma

(cherry picked from commit 9683168300c78f6e0001a6098251d3252048df0c)
This commit is contained in:
Robert Scott 2021-09-03 22:46:55 +01:00
parent a854f54669
commit 1bfd789f3f
2 changed files with 7 additions and 3 deletions

View File

@ -5,13 +5,13 @@
import ./generic.nix (rec {
pname = "Pillow";
version = "8.3.1";
version = "8.3.2";
disabled = !isPy3k;
src = fetchPypi {
inherit pname version;
sha256 = "2cac53839bfc5cece8fdbe7f084d5e3ee61e1303cccc86511d351adcb9e2c792";
sha256 = "1361y215ydmdh4il1vay5831aqivmpwgzjqrphqjdiq0ipnz7qyx";
};
meta = with lib; {

View File

@ -18,7 +18,11 @@ buildPythonPackage rec {
'';
# Disable darwin tests which require executables: `iconutil` and `screencapture`
disabledTests = lib.optionals stdenv.isDarwin [
disabledTests = [
# pyroma version in 21.05 complains about python 3.10 reference in
# classifier tags
"test_pyroma"
] ++ lib.optionals stdenv.isDarwin [
"test_grab"
"test_grabclipboard"
"test_save"