diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2018-06-24 12:06:29 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2018-06-26 02:16:58 +0200 |
commit | 60b884669287f888dd5059aed1945164bdf0912f (patch) | |
tree | 9c3c8969fd5e87022c7c233dbaf4927e3fbe72b4 /gnu/packages/pdf.scm | |
parent | 55492129f55116acfe8ab42aefd00fa829c3ac58 (diff) | |
download | guix-60b884669287f888dd5059aed1945164bdf0912f.tar guix-60b884669287f888dd5059aed1945164bdf0912f.tar.gz |
gnu: python-pypdf2: Return #t from all phases.
* gnu/packages/pdf.scm (python-pypdf2)[arguments]: Substitute INVOKE for
SYSTEM*.
Diffstat (limited to 'gnu/packages/pdf.scm')
-rw-r--r-- | gnu/packages/pdf.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/pdf.scm b/gnu/packages/pdf.scm index fb7fd3d2fe..643d21b3d0 100644 --- a/gnu/packages/pdf.scm +++ b/gnu/packages/pdf.scm @@ -906,7 +906,7 @@ converter using the Poppler and Cairo libraries.") #t)) (replace 'check (lambda _ - (zero? (system* "python" "-m" "unittest" "Tests.tests"))))))) + (invoke "python" "-m" "unittest" "Tests.tests")))))) (home-page "http://mstamy2.github.com/PyPDF2") (synopsis "Pure Python PDF toolkit") (description "PyPDF2 is a pure Python PDF library capable of: |