python3Packages.pypdf: 6.12.2 -> 6.13.2

Diff: https://github.com/py-pdf/pypdf/compare/6.12.2...6.13.2

Changelog: https://github.com/py-pdf/pypdf/blob/6.13.2/CHANGELOG.md
This commit is contained in:
Robert Schütz
2026-06-10 10:40:45 -07:00
parent 7b04bcffb4
commit 3d067b05b9
@@ -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 ];
};