guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit a38f621f63356b49d59b769c44c8f45553e3df6c
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Sun May 31 23:14:21 2026 +0100
gnu: python-urllib3: Update to 2.7.0.
* gnu/packages/python-web.scm (python-urllib3): Update to 2.7.0.
Change-Id: Ia21a6e6a2b2dac63d1c1daa793db07b851aeb4bc
---
gnu/packages/python-web.scm | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index b7774e1703..e06e3f9c68 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -7843,14 +7843,14 @@ OAuth request-signing logic.")
(define-public python-urllib3
(package
(name "python-urllib3")
- (version "2.5.0")
+ (version "2.7.0")
(source
(origin
(method url-fetch)
(uri (pypi-uri "urllib3" version))
(sha256
(base32
- "0q17z6zlpyjv9ax5c3d30qwp9fwhz2sc4gbb7yyd86g4qwrpgi1z"))))
+ "0k2za0kdl4y8mdhay0wbnf6522n4ybr61gk7gik19srwnv1hw7i3"))))
(build-system pyproject-build-system)
(arguments `(#:tests? #f))
(native-inputs
@@ -7860,17 +7860,17 @@ OAuth request-signing logic.")
(propagated-inputs
(append
;; These 5 inputs are used to build urrlib3[secure]
- (list python-certifi)
+ (list python-certifi
+ python-idna
+ python-pysocks)
(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