gnu: python-cryptography: Update to 1.2.2.
* gnu/packages/python.scm (python-cryptography): Update to 1.2.2. [source]: Change to `pypi uri` syntax. [native-inputs]: Add python-pyasn1, python-pyasn1-modules, python-hypothesis. (python2-cryptography)[propagated-inputs]: Add python2-backport-ssl-match-hostname
This commit is contained in:
parent
b39b33e8c8
commit
ce6c13ee8c
|
@ -5799,15 +5799,14 @@ responses, rather than doing any computation.")
|
||||||
(define-public python-cryptography
|
(define-public python-cryptography
|
||||||
(package
|
(package
|
||||||
(name "python-cryptography")
|
(name "python-cryptography")
|
||||||
(version "1.0.2")
|
(version "1.2.2")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "https://pypi.python.org/packages/source/c/"
|
(uri (pypi-uri "cryptography" version))
|
||||||
"cryptography/cryptography-" version ".tar.gz"))
|
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1jmcidddbbgdavvnvjjc0pda4b9a5i9idsivchn69pqxx68x8k6n"))))
|
"0rvaha7ymgbqkzbxk7xmj67k5b3hbp8w8cn3m5z776vd22wrq89z"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(inputs
|
(inputs
|
||||||
`(("openssl" ,openssl)))
|
`(("openssl" ,openssl)))
|
||||||
|
@ -5820,8 +5819,11 @@ responses, rather than doing any computation.")
|
||||||
("python-iso8601" ,python-iso8601)))
|
("python-iso8601" ,python-iso8601)))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("python-cryptography-vectors" ,python-cryptography-vectors)
|
`(("python-cryptography-vectors" ,python-cryptography-vectors)
|
||||||
|
("python-hypothesis" ,python-hypothesis)
|
||||||
("python-setuptools" ,python-setuptools)
|
("python-setuptools" ,python-setuptools)
|
||||||
("python-pretend" ,python-pretend)
|
("python-pretend" ,python-pretend)
|
||||||
|
("python-pyasn1" ,python-pyasn1)
|
||||||
|
("python-pyasn1-modules" ,python-pyasn1-modules)
|
||||||
("python-pytest" ,python-pytest)))
|
("python-pytest" ,python-pytest)))
|
||||||
(home-page "https://github.com/pyca/cryptography")
|
(home-page "https://github.com/pyca/cryptography")
|
||||||
(synopsis "Cryptographic recipes and primitives for Python")
|
(synopsis "Cryptographic recipes and primitives for Python")
|
||||||
|
@ -5839,6 +5841,8 @@ message digests and key derivation functions.")
|
||||||
(package (inherit crypto)
|
(package (inherit crypto)
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
`(("python2-ipaddress" ,python2-ipaddress)
|
`(("python2-ipaddress" ,python2-ipaddress)
|
||||||
|
("python2-backport-ssl-match-hostname"
|
||||||
|
,python2-backport-ssl-match-hostname)
|
||||||
,@(package-propagated-inputs crypto))))))
|
,@(package-propagated-inputs crypto))))))
|
||||||
|
|
||||||
(define-public python-pyopenssl
|
(define-public python-pyopenssl
|
||||||
|
|
Loading…
Reference in New Issue