python3.pkgs.pillow: 10.0.0 -> 10.0.1

Changes: https://github.com/python-pillow/Pillow/releases/tag/10.0.1
This commit is contained in:
Sergei Trofimovich
2023-09-18 11:29:55 +01:00
parent 98a4b8f08d
commit 78b49e471c
@@ -3,7 +3,6 @@
, buildPythonPackage
, pythonOlder
, fetchPypi
, fetchpatch
, isPyPy
, defusedxml, olefile, freetype, libjpeg, zlib, libtiff, libwebp, libxcrypt, tcl, lcms2, tk, libX11
, libxcb, openjpeg, libimagequant, pyroma, numpy, pytestCheckHook, setuptools
@@ -13,7 +12,7 @@
import ./generic.nix (rec {
pname = "pillow";
version = "10.0.0";
version = "10.0.1";
format = "pyproject";
disabled = pythonOlder "3.8";
@@ -21,19 +20,9 @@ import ./generic.nix (rec {
src = fetchPypi {
pname = "Pillow";
inherit version;
hash = "sha256-nIK1s+BDx68NlXktDSDM9o9hof7Gs1MOcYtohCJyc5Y=";
hash = "sha256-1ylnsGvpMA/tXPvItbr87sSL983H2rZrHSVJA1KHGR0=";
};
patches = [
# Pull in zlib-1.3 fix pending upstream inclusion
# https://github.com/python-pillow/Pillow/pull/7344
(fetchpatch {
name = "zlib-1.3.patch";
url = "https://github.com/python-pillow/Pillow/commit/9ef7cb39def45b0fe1cdf4828ca20838a1fc39d1.patch";
hash = "sha256-N7V6Xz+SBHSm3YIgmbty7zbqkv8MzpLMhU4Xxerhx8w=";
})
];
passthru.tests = {
inherit imageio matplotlib pilkit pydicom reportlab;
};