diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2015-09-21 22:46:11 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2015-09-25 21:44:29 +0200 |
commit | 88b47cb0e082388d84c71f738b2ece2e356b6772 (patch) | |
tree | dd84f1200b74cf58b2382134bf088cb84e1933c4 /gnu/packages/python.scm | |
parent | aa759a51398d6245e6631d15724d1da7cafdd981 (diff) | |
download | patches-88b47cb0e082388d84c71f738b2ece2e356b6772.tar patches-88b47cb0e082388d84c71f738b2ece2e356b6772.tar.gz |
gnu: Add python-cryptography.
* gnu/packages/python.scm (python-cryptography, python2-cryptography):
New variables.
Diffstat (limited to 'gnu/packages/python.scm')
-rw-r--r-- | gnu/packages/python.scm | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 6fccfdef2a..a653099980 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -5047,3 +5047,48 @@ responses, rather than doing any computation.") (define-public python2-cryptography-vectors (package-with-python2 python-cryptography-vectors)) + +(define-public python-cryptography + (package + (name "python-cryptography") + (version "1.0.1") + (source + (origin + (method url-fetch) + (uri (string-append "https://pypi.python.org/packages/source/c/" + "cryptography/cryptography-" version ".tar.gz")) + (sha256 + (base32 + "1lxzvhlyl6h6nm77n34622rcj2cxnx220x9vgjlw76wjd8m0kqyg")))) + (build-system python-build-system) + (inputs + `(("openssl" ,openssl))) + (propagated-inputs + `(("python-cffi" ,python-cffi) + ("python-six" ,python-six) + ("python-pyasn1" ,python-pyasn1) + ("python-enum34" ,python-enum34) + ("python-idna" ,python-idna) + ("python-iso8601" ,python-iso8601))) + (native-inputs + `(("python-cryptography-vectors" ,python-cryptography-vectors) + ("python-setuptools" ,python-setuptools) + ("python-pretend" ,python-pretend) + ("python-pytest" ,python-pytest))) + (home-page "https://github.com/pyca/cryptography") + (synopsis "Cryptographic recipes and primitives for Python") + (description + "cryptography is a package which provides cryptographic recipes and +primitives to Python developers. It aims to be the “cryptographic standard +library” for Python. The package includes both high level recipes, and low +level interfaces to common cryptographic algorithms such as symmetric ciphers, +message digests and key derivation functions.") + ;; Distributed under either BSD-3 or ASL2.0 + (license (list bsd-3 asl2.0)))) + +(define-public python2-cryptography + (let ((crypto (package-with-python2 python-cryptography))) + (package (inherit crypto) + (propagated-inputs + `(("python2-ipaddress" ,python2-ipaddress) + ,@(package-propagated-inputs crypto)))))) |