[Backport release-26.05] python3Packages.pypdf: 6.12.2 -> 6.13.2 (#530445)

This commit is contained in:
Thomas Gerbet 2026-06-10 19:56:48 +00:00 committed by GitHub
commit 3895b9377f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -13,6 +13,7 @@
# optionals
cryptography,
fonttools,
pillow,
# tests
@ -23,7 +24,7 @@
buildPythonPackage rec {
pname = "pypdf";
version = "6.12.2";
version = "6.13.2";
pyproject = true;
src = fetchFromGitHub {
@ -32,7 +33,7 @@ buildPythonPackage rec {
tag = version;
# fetch sample files used in tests
fetchSubmodules = true;
hash = "sha256-rRvRAasPgE5nCChYJYB9olSE3RWmztYSJoAbmh+a3Q0=";
hash = "sha256-P/tm4roaVVnEq/bUsyk3S2ts7UWBWbDuZ1RqNKGxUS0=";
};
outputs = [
@ -54,8 +55,9 @@ buildPythonPackage rec {
];
optional-dependencies = rec {
full = crypto ++ image;
full = crypto ++ fonts ++ image;
crypto = [ cryptography ];
fonts = [ fonttools ];
image = [ pillow ];
};