Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

python3Packages.pypdf: 4.3.1 -> 5.0.0 #343968

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions pkgs/development/python-modules/pypdf/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@

buildPythonPackage rec {
pname = "pypdf";
version = "4.3.1";
version = "5.0.0";
pyproject = true;

src = fetchFromGitHub {
Expand All @@ -36,7 +36,7 @@ buildPythonPackage rec {
rev = "refs/tags/${version}";
# fetch sample files used in tests
fetchSubmodules = true;
hash = "sha256-wSF20I5WaxRoN0n0jxB5O3mAAIOxP/TclYBTRAUwYHo=";
hash = "sha256-omnNC1mzph59aqrXqLCuCk0LgzfJv/JhbQRrAgRhAIg=";
};

outputs = [
Expand Down Expand Up @@ -78,6 +78,10 @@ buildPythonPackage rec {
# don't access the network
"-m"
"'not enable_socket'"
# this test also needs network so disable it for now https://github.com/py-pdf/pypdf/pull/2867
"-k"
"'not increment_writer'"

];

meta = with lib; {
Expand Down