gnu: Add python-cryptography-vectors.

* gnu/packages/python.scm (python-cryptography-vectors,
  python2-cryptography-vectors): New variables.
This commit is contained in:
Ricardo Wurmus 2015-09-21 22:45:42 +02:00
parent 36ebf97283
commit aa759a5139
1 changed files with 26 additions and 0 deletions

View File

@ -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))