Merge pull request #277910 from risicle/ris-pypdf-3.17.4

python3Packages.pypdf: 3.16.0 -> 3.17.4

authored by Martin Weinelt and committed by GitHub 409109ae 72b63a80

+4 -2
+4 -2
pkgs/development/python-modules/pypdf/default.nix
··· 19 , pillow 20 21 # tests 22 , pytestCheckHook 23 , pytest-timeout 24 }: 25 26 buildPythonPackage rec { 27 pname = "pypdf"; 28 - version = "3.16.0"; 29 format = "pyproject"; 30 31 src = fetchFromGitHub { ··· 34 rev = "refs/tags/${version}"; 35 # fetch sample files used in tests 36 fetchSubmodules = true; 37 - hash = "sha256-vE5ujknMpufBuwWqtjkLegTRe4eDAvBVPCVM6It2pHQ="; 38 }; 39 40 outputs = [ ··· 75 ]; 76 77 nativeCheckInputs = [ 78 pytestCheckHook 79 pytest-timeout 80 ] ++ passthru.optional-dependencies.full;
··· 19 , pillow 20 21 # tests 22 + , fpdf2 23 , pytestCheckHook 24 , pytest-timeout 25 }: 26 27 buildPythonPackage rec { 28 pname = "pypdf"; 29 + version = "3.17.4"; 30 format = "pyproject"; 31 32 src = fetchFromGitHub { ··· 35 rev = "refs/tags/${version}"; 36 # fetch sample files used in tests 37 fetchSubmodules = true; 38 + hash = "sha256-2FKTBN1VZX0LGiDEghix4DBt1gO9NRNB/lAUefu5EUA="; 39 }; 40 41 outputs = [ ··· 76 ]; 77 78 nativeCheckInputs = [ 79 + (fpdf2.overridePythonAttrs { doCheck = false; }) # avoid reference loop 80 pytestCheckHook 81 pytest-timeout 82 ] ++ passthru.optional-dependencies.full;