summaryrefslogtreecommitdiff
path: root/gnu/packages/python-web.scm
diff options
context:
space:
mode:
authorCayetano Santos <csantosb@inventati.org>2025-04-21 12:15:30 +0200
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-04-23 23:12:22 +0100
commitfc718a5df96812e43d607c5d6c4ac316437698fe (patch)
tree903d00a8ce5f82907c8380ad7a80d0c7d0fa5331 /gnu/packages/python-web.scm
parent3901b539d27140b34ad4e770d500c84355ad45b9 (diff)
gnu: Add python-urllib3-1.25.
* gnu/packages/python-web.scm (python-urllib3-1.25): New variable. Change-Id: I28ea55b42dee708ad8d15e51d6b8e8a5ec2f392f Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/python-web.scm')
-rw-r--r--gnu/packages/python-web.scm15
1 files changed, 15 insertions, 0 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index 8fe9f58978..ef5cd127df 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -5139,6 +5139,21 @@ supports url redirection and retries, and also gzip and deflate decoding.")
(list python-hatchling
python-hatch-vcs))))
+(define-public python-urllib3-1.25
+ (package
+ (inherit python-urllib3)
+ (version "1.25.19")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "urllib3" version))
+ (sha256
+ (base32
+ "09rmjqm5syhhc8fx3v06h3yv6cqy0b1081jg8wm5grpwpr72j61h"))))
+ (native-inputs
+ (list python-setuptools
+ python-wheel))))
+
(define-public python-urllib3-1.26
(package
(inherit python-urllib3)