diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2015-09-23 21:27:28 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2015-09-25 21:44:30 +0200 |
commit | 22af90291f4028d154f99dbddf268a47a3f2ea08 (patch) | |
tree | d02275843638aee16bf6b8216374ddef36ad63d9 /gnu/packages/gnupg.scm | |
parent | 5af999b8989e434d94cd07a805ba458872864fc2 (diff) | |
download | guix-22af90291f4028d154f99dbddf268a47a3f2ea08.tar guix-22af90291f4028d154f99dbddf268a47a3f2ea08.tar.gz |
gnu: Add python-gnupg.
* gnu/packages/gnupg.scm (python-gnupg, python2-gnupg): New variables.
Diffstat (limited to 'gnu/packages/gnupg.scm')
-rw-r--r-- | gnu/packages/gnupg.scm | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/gnu/packages/gnupg.scm b/gnu/packages/gnupg.scm index 58826176d5..3bd87dccc6 100644 --- a/gnu/packages/gnupg.scm +++ b/gnu/packages/gnupg.scm @@ -325,6 +325,49 @@ instead. This way bug fixes or improvements can be done at a central place and every application benefits from this.") (license license:lgpl2.1+))) +(define-public python-gnupg + (package + (name "python-gnupg") + (version "0.3.7") + (source + (origin + (method url-fetch) + (uri (string-append "https://pypi.python.org/packages/source/p/" + "python-gnupg/python-gnupg-" version ".tar.gz")) + (sha256 + (base32 + "1hg9gshk4b7raskj8mjadsjcv10axlx2z4xl4ag2f2bpi4f8chvq")))) + (build-system python-build-system) + (arguments + `(#:phases + (modify-phases %standard-phases + (replace 'check + (lambda* (#:key inputs #:allow-other-keys) + (substitute* "test_gnupg.py" + ;; Test keyrings are missing, so this test fails. + (("'test_scan_keys'") "True") + (("def test_scan_keys") "def disabled__scan_keys") + ;; Unsure why this test fails. + (("'test_search_keys'") "True") + (("def test_search_keys") "def disabled__search_keys")) + (setenv "GPGBINARY" "gpg") + (setenv "USERNAME" "guixbuilder") + ;; The doctests are extremely slow and sometimes time out, + ;; so we disable them. + (zero? (system* "python" + "test_gnupg.py" "--no-doctests"))))))) + (native-inputs + `(("gnupg" ,gnupg-1))) + (home-page "http://packages.python.org/python-gnupg/index.html") + (synopsis "Wrapper for the GNU Privacy Guard") + (description + "This module allows easy access to GnuPG’s key management, encryption +and signature functionality from Python programs.") + (license license:bsd-3))) + +(define-public python2-gnupg + (package-with-python2 python-gnupg)) + (define-public pius (package (name "pius") |