diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2024-12-29 17:24:46 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2025-01-20 21:37:28 +0100 |
commit | 80106ec31978a526628a107e213c6f3e990d7494 (patch) | |
tree | de363678af82ac07902dc94ab6d39f0da0daae67 /gnu/packages/python-crypto.scm | |
parent | baca820ebc0d880b7879100770c9bfc72d1e075e (diff) |
gnu: python-pyopenssl: Update to 24.3.0.
* gnu/packages/python-crypto.scm (python-pyopenssl): Update to 24.3.0.
[build-system]: Use pyproject-build-system.
[native-inputs]: Add python-wheel.
Change-Id: I504a80c300a94698771734734bed29c07cb13bd5
Diffstat (limited to 'gnu/packages/python-crypto.scm')
-rw-r--r-- | gnu/packages/python-crypto.scm | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/gnu/packages/python-crypto.scm b/gnu/packages/python-crypto.scm index 2041c190f7..4ba2beec72 100644 --- a/gnu/packages/python-crypto.scm +++ b/gnu/packages/python-crypto.scm @@ -623,15 +623,15 @@ ciphers, message digests and key derivation functions.") (define-public python-pyopenssl (package (name "python-pyopenssl") - (version "24.2.1") + (version "24.3.0") (source (origin (method url-fetch) (uri (pypi-uri "pyopenssl" version)) (sha256 (base32 - "158fpy6fsmkrci67qpzg06ha3ygh3ah3xzxjrc6md3blwgdz0is2")))) - (build-system python-build-system) + "0dmv720kn5ws7bs1rkn59qmhzv5wxkkgriampi34g0vxawcs1xs9")))) + (build-system pyproject-build-system) (arguments (list #:phases @@ -649,8 +649,12 @@ ciphers, message digests and key derivation functions.") "not test_fallback_default_verify_paths "))))))) (propagated-inputs (list python-cryptography)) (inputs (list openssl)) - (native-inputs (list libfaketime python-pretend python-pytest - python-pytest-rerunfailures)) + (native-inputs + (list libfaketime + python-pretend + python-pytest + python-pytest-rerunfailures + python-wheel)) (home-page "https://github.com/pyca/pyopenssl") (synopsis "Python wrapper module around the OpenSSL library") (description "PyOpenSSL is a high-level wrapper around a subset of the |