From aa759a51398d6245e6631d15724d1da7cafdd981 Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Mon, 21 Sep 2015 22:45:42 +0200 Subject: gnu: Add python-cryptography-vectors. * gnu/packages/python.scm (python-cryptography-vectors, python2-cryptography-vectors): New variables. --- gnu/packages/python.scm | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) (limited to 'gnu/packages/python.scm') diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index a06e265588..6fccfdef2a 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -5021,3 +5021,29 @@ responses, rather than doing any computation.") (define-public python2-pretend (package-with-python2 python-pretend)) + +(define-public python-cryptography-vectors + (package + (name "python-cryptography-vectors") + (version "1.0.1") + (source + (origin + (method url-fetch) + (uri (string-append "https://pypi.python.org/packages/source/c/" + "cryptography-vectors/cryptography_vectors-" + version ".tar.gz")) + (sha256 + (base32 + "1i2chlyhlx4792di82fqzcy9wz0gnnc661bj46zr794ip4629sp4")))) + (build-system python-build-system) + (native-inputs + `(("python-setuptools" ,python-setuptools))) + (home-page "https://github.com/pyca/cryptography") + (synopsis "Test vectors for the cryptography package.") + (description + "This package contains test vectors for the cryptography package.") + ;; Distributed under either BSD-3 or ASL2.0 + (license (list bsd-3 asl2.0)))) + +(define-public python2-cryptography-vectors + (package-with-python2 python-cryptography-vectors)) -- cgit v1.2.3