diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2024-05-24 20:09:00 +0200 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-12-13 20:18:59 +0000 |
commit | ebe35e6b73326b0029323b640d58f7b3be1373a8 (patch) | |
tree | 3246edfe23cb646f12e3c5fd537c0b14b5d12e71 | |
parent | 1615b5a21c2fcd37bc4486cf7ee237a57dac47a7 (diff) | |
download | guix-ebe35e6b73326b0029323b640d58f7b3be1373a8.tar.gz guix-ebe35e6b73326b0029323b640d58f7b3be1373a8.zip |
gnu: python-urllib3: Update to 2.2.1.
* gnu/packages/python-web.scm (python-urllib3): Update to 2.2.1. Re-indent.
[build-system]: Use PYPROJECT-BUILD-SYSTEM.
[native-inputs]: Add PYTHON-HATCHLING.
Change-Id: I980c0cad01b39cce44e3cae09e776fbdff9b162a
-rw-r--r-- | gnu/packages/python-web.scm | 41 |
1 files changed, 21 insertions, 20 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index c19d148432..b99aff3422 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -4113,30 +4113,31 @@ addon for removing tracking fields from URLs.") (define-public python-urllib3 (package (name "python-urllib3") - (version "1.26.15") + (version "2.2.1") (source - (origin - (method url-fetch) - (uri (pypi-uri "urllib3" version)) - (sha256 - (base32 - "01dkqv0rsjqyw4wrp6yj8h3bcnl7c678qkj845596vs7p4bqff4a")))) - (build-system python-build-system) + (origin + (method url-fetch) + (uri (pypi-uri "urllib3" version)) + (sha256 + (base32 + "06fg8jj64lgxr2jrizzrsdvaf1avpg5qmhvnswhfbf8sqrv0hmyh")))) + (build-system pyproject-build-system) (arguments `(#:tests? #f)) + (native-inputs (list python-hatchling)) (propagated-inputs (append - ;; These 5 inputs are used to build urrlib3[secure] - (list python-certifi) - (if (member (%current-system) - (package-transitive-supported-systems python-cryptography)) - (list python-cryptography) - '()) - (list python-idna) - (if (member (%current-system) - (package-transitive-supported-systems python-pyopenssl)) - (list python-pyopenssl) - '()) - (list python-pysocks))) + ;; These 5 inputs are used to build urrlib3[secure] + (list python-certifi) + (if (member (%current-system) + (package-transitive-supported-systems python-cryptography)) + (list python-cryptography) + '()) + (list python-idna) + (if (member (%current-system) + (package-transitive-supported-systems python-pyopenssl)) + (list python-pyopenssl) + '()) + (list python-pysocks))) (home-page "https://urllib3.readthedocs.io/") (synopsis "HTTP library with thread-safe connection pooling") (description |