guix-commits
[Top][All Lists]
Advanced

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

08/11: gnu: Add python2-pgpdump.


From: Ludovic Courtès
Subject: 08/11: gnu: Add python2-pgpdump.
Date: Thu, 26 Oct 2017 01:30:09 -0400 (EDT)

civodul pushed a commit to branch master
in repository guix.

commit 7756eab0783b54037298758354f04a6f15052d3e
Author: ng0 <address@hidden>
Date:   Sat Oct 21 23:41:26 2017 +0000

    gnu: Add python2-pgpdump.
    
    * gnu/packages/gnupg.scm (python2-pgpdump): New variable.
    
    Signed-off-by: Ludovic Courtès <address@hidden>
---
 gnu/packages/gnupg.scm | 31 +++++++++++++++++++++++++++++++
 1 file changed, 31 insertions(+)

diff --git a/gnu/packages/gnupg.scm b/gnu/packages/gnupg.scm
index 326b2b9..48e15e2 100644
--- a/gnu/packages/gnupg.scm
+++ b/gnu/packages/gnupg.scm
@@ -978,3 +978,34 @@ keyring content.  Parcimonie is a daemon that fetches one 
key at a time using
 the Tor network, waits a bit, changes the Tor circuit being used, and starts
 over.")
     (license license:gpl1+)))
+
+(define-public python2-pgpdump
+  (package
+    (name "python2-pgpdump")
+    (version "1.5")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "pgpdump" version))
+       (sha256
+        (base32
+         "0s4nh8h7qsdj2yf29bspjs1zvxd4lcd11r6g11dp7fppgf2h0iqw"))))
+    (build-system python-build-system)
+
+    ;; Currently fails to build with Python 3.
+    (arguments `(#:python ,python-2))
+
+    (home-page "https://github.com/toofishes/python-pgpdump";)
+    (synopsis "Python library for parsing PGP packets")
+    (description
+     "Python-pgpdump is an OpenPGP packet parser based on
address@hidden://www.mew.org/~kazu/proj/pgpdump/, pgpdump}.  It notably 
supports:
+
address@hidden
address@hidden signature packets;
address@hidden public key packets;
address@hidden secret key packets;
address@hidden trust, user ID, and user attribute packets;
address@hidden ASCII-armor decoding and CRC check.
address@hidden itemize\n")
+    (license license:bsd-3)))



reply via email to

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