python310Packages.pillow: 9.5.0 -> 10.0.0

https://github.com/python-pillow/Pillow/releases/tag/10.0.0
This commit is contained in:
Martin Weinelt
2023-07-28 12:15:36 +02:00
parent 52dc6bf629
commit bdf1a96570
@@ -13,25 +13,17 @@
import ./generic.nix (rec {
pname = "pillow";
version = "9.5.0";
format = "setuptools";
version = "10.0.0";
format = "pyproject";
disabled = pythonOlder "3.7";
disabled = pythonOlder "3.8";
src = fetchPypi {
pname = "Pillow";
inherit version;
hash = "sha256-v1SEedM2cm16Ds6252fhefveN4M65CeUYCYxoHDWMPE=";
hash = "sha256-nIK1s+BDx68NlXktDSDM9o9hof7Gs1MOcYtohCJyc5Y=";
};
patches = [
(fetchpatch {
# Fixed type handling for include and lib directories; Remove with 10.0.0
url = "https://github.com/python-pillow/Pillow/commit/0ec0a89ead648793812e11739e2a5d70738c6be5.patch";
hash = "sha256-m5R5fLflnbJXbRxFlTjT2X3nKdC05tippMoJUDsJmy0=";
})
];
passthru.tests = {
inherit imageio matplotlib pilkit pydicom reportlab;
};