gnu: python-pyopenssl: Downgrade to 21.0.0.
This is a follow-up to 048e05b7ef
.
* gnu/packages/python-crypto.scm (python-pyopenssl): Downgrade to 21.0.0.
[source]: Add patch used by python2-pyopenssl.
[properties]: Remove field.
(python2-pyopenssl): Inherit from python-pyopenssl regularly.
master
parent
d500a58b42
commit
b1f763de54
|
@ -669,17 +669,19 @@ message digests and key derivation functions.")
|
||||||
python2-backport-ssl-match-hostname
|
python2-backport-ssl-match-hostname
|
||||||
python2-enum34))))))
|
python2-enum34))))))
|
||||||
|
|
||||||
|
;; This is the last version which is compatable with python-cryptography < 35.
|
||||||
(define-public python-pyopenssl
|
(define-public python-pyopenssl
|
||||||
(package
|
(package
|
||||||
(name "python-pyopenssl")
|
(name "python-pyopenssl")
|
||||||
(version "22.0.0")
|
(version "21.0.0")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (pypi-uri "pyOpenSSL" version))
|
(uri (pypi-uri "pyOpenSSL" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1gzihw09sqi71lwx97c69hab7w4rbnl6hhfrl6za3i5a4la1n2v6"))))
|
"1cqcc20fwl521z3fxsc1c98gbnhb14q55vrvjfp6bn6h8rg8qbay"))
|
||||||
|
(patches (search-patches "python2-pyopenssl-openssl-compat.patch"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
(list
|
(list
|
||||||
|
@ -714,22 +716,10 @@ message digests and key derivation functions.")
|
||||||
(description
|
(description
|
||||||
"PyOpenSSL is a high-level wrapper around a subset of the OpenSSL
|
"PyOpenSSL is a high-level wrapper around a subset of the OpenSSL
|
||||||
library.")
|
library.")
|
||||||
(properties `((python2-variant . ,(delay python2-pyopenssl))))
|
|
||||||
(license license:asl2.0)))
|
(license license:asl2.0)))
|
||||||
|
|
||||||
(define-public python2-pyopenssl
|
(define-public python2-pyopenssl
|
||||||
(let ((base (package-with-python2 (strip-python2-variant python-pyopenssl))))
|
(package-with-python2 python-pyopenssl))
|
||||||
(package
|
|
||||||
(inherit base)
|
|
||||||
(version "21.0.0")
|
|
||||||
(source
|
|
||||||
(origin
|
|
||||||
(method url-fetch)
|
|
||||||
(uri (pypi-uri "pyOpenSSL" version))
|
|
||||||
(patches (search-patches "python2-pyopenssl-openssl-compat.patch"))
|
|
||||||
(sha256
|
|
||||||
(base32
|
|
||||||
"1cqcc20fwl521z3fxsc1c98gbnhb14q55vrvjfp6bn6h8rg8qbay")))))))
|
|
||||||
|
|
||||||
(define-public python-ed25519
|
(define-public python-ed25519
|
||||||
(package
|
(package
|
||||||
|
|
Reference in New Issue