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