diff --git a/pkgs/development/python-modules/pypdf/default.nix b/pkgs/development/python-modules/pypdf/default.nix index c31050919373..a6be695a03a8 100644 --- a/pkgs/development/python-modules/pypdf/default.nix +++ b/pkgs/development/python-modules/pypdf/default.nix @@ -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 ]; };