guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

02/03: gnu: Add python-pypdf3.


From: guix-commits
Subject: 02/03: gnu: Add python-pypdf3.
Date: Tue, 11 Jan 2022 04:55:56 -0500 (EST)

ngz pushed a commit to branch master
in repository guix.

commit 732180015b86fe10fdbef4f3cc9a86285032f5c7
Author: Greg Hogan <code@greghogan.com>
AuthorDate: Tue Jan 11 10:50:53 2022 +0100

    gnu: Add python-pypdf3.
    
    * gnu/packages/python-xyz.scm (python-pypdf3): New variable.
    
    Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
---
 gnu/packages/python-xyz.scm | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 68517d2292..6e4588b39d 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -113,6 +113,7 @@
 ;;; Copyright © 2021 Raphaël Mélotte <raphael.melotte@mind.be>
 ;;; Copyright © 2021 ZmnSCPxj <ZmnSCPxj@protonmail.com>
 ;;; Copyright © 2021 Filip Lajszczak <filip@lajszczak.dev>
+;;; Copyright © 2021 Greg Hogan <code@greghogan.com>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -6915,6 +6916,27 @@ the OleFileIO module from PIL, the Python Image 
Library.")
 (define-public python2-olefile
   (package-with-python2 python-olefile))
 
+(define-public python-pypdf3
+  (package
+    (name "python-pypdf3")
+    (version "1.0.5")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "PyPDF3" version))
+       (sha256
+        (base32 "018hlq9q2qa96vw4j7ppq352znykldwy98h2w9qcpkvpi93sjqhc"))))
+    (build-system python-build-system)
+    (propagated-inputs
+     (list python-tqdm))
+    (home-page "https://github.com/sfneal/PyPDF3";)
+    (synopsis "Utility to read and write PDFs with Python")
+    (description "PyPDF3 is a pure-python PDF library capable of splitting,
+merging together, cropping, and transforming the pages of PDF files.  It can
+also add custom data, viewing options, and passwords to PDF files.  It can
+retrieve text and metadata from PDFs as well as merge entire files together.")
+    (license license:bsd-3)))
+
 (define-public python-pikepdf
   (package
     (name "python-pikepdf")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]