python312Packages.pillow-heif: 0.16.0 -> 0.17.0

https://github.com/bigcat88/pillow_heif/releases/tag/v0.17.0

and apply a patch for libheif 1.18 support.
This commit is contained in:
Martin Weinelt
2024-07-25 03:12:22 +02:00
parent a9d2968bc7
commit 850aa4ebd6
@@ -3,6 +3,7 @@
stdenv,
buildPythonPackage,
fetchFromGitHub,
fetchpatch2,
# build-system
cmake,
@@ -28,16 +29,24 @@
buildPythonPackage rec {
pname = "pillow-heif";
version = "0.16.0";
version = "0.17.0";
pyproject = true;
src = fetchFromGitHub {
owner = "bigcat88";
repo = "pillow_heif";
rev = "refs/tags/v${version}";
hash = "sha256-TpK6VK2YoOtc4ueag33m5n1umcUWOUgcda/MZEEOR7g=";
hash = "sha256-fKh4UbTVj74YxH2vvL24DNmMxg10GSYAmduwuRneE+0=";
};
patches = [
(fetchpatch2 {
# fix libheif 1.18 support in tests
url = "https://github.com/bigcat88/pillow_heif/commit/a59434e9ca1138e47e322ddef2adc79e684384f1.patch";
hash = "sha256-yVT/pnO5KWMnsO95EPCZgyhx6FIJOhsna7t0zpTjWpE=";
})
];
postPatch = ''
sed -i '/addopts/d' pyproject.toml
'';