From 678b5402e9a226383abbd5d2e560d3f609d719e6 Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Mon, 21 Sep 2015 22:46:11 +0200 Subject: [PATCH 07/11] gnu: Add python-cryptography. * gnu/packages/python.scm (python-cryptography, python2-cryptography): New variables. --- gnu/packages/python.scm | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 17fa3ee..728c8d4 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -5046,3 +5046,45 @@ 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-ipaddress" ,python-ipaddress) + ("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 bsd-3))) + +(define-public python2-cryptography + (package-with-python2 python-cryptography)) -- 2.5.0