python3Packages.pillow: 11.3.0 -> 12.0.0

https://pillow.readthedocs.io/en/stable/releasenotes/12.0.0.html
This commit is contained in:
Martin Weinelt
2025-10-16 23:28:30 +02:00
parent bcac5a09f7
commit 922c5f556e
@@ -8,6 +8,7 @@
# build-system
setuptools,
pkg-config,
pybind11,
# native dependencies
freetype,
@@ -43,17 +44,20 @@
buildPythonPackage rec {
pname = "pillow";
version = "11.3.0";
version = "12.0.0";
pyproject = true;
src = fetchFromGitHub {
owner = "python-pillow";
repo = "pillow";
tag = version;
hash = "sha256-VOOIxzTyERI85CvA2oIutybiivU14kIko8ysXpmwUN8=";
hash = "sha256-58mjwHErEZPkkGBVZznkkMQN5Zo4ZBBiXnhqVp1F81g=";
};
build-system = [ setuptools ];
build-system = [
setuptools
pybind11
];
nativeBuildInputs = [ pkg-config ];