mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-06 17:13:24 -05:00
[Backport release-26.05] python3Packages.pypdf: 6.12.2 -> 6.13.2 (#530445)
This commit is contained in:
commit
3895b9377f
1 changed files with 5 additions and 3 deletions
|
|
@ -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 ];
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue