about summary refs log tree commit diff
path: root/arunisaac/openconnect.scm
diff options
context:
space:
mode:
authorArun Isaac2026-06-30 12:33:34 +0100
committerArun Isaac2026-06-30 13:07:49 +0100
commitc9efddf0eb6a1bd40667d6aeee8148007ab0a512 (patch)
tree3a174b850acff040a11934df5750f9f49baa1aff /arunisaac/openconnect.scm
parent15d30545b241c4a8b8e1d41d7aa0fac836446dee (diff)
downloadguix-arunisaac-c9efddf0eb6a1bd40667d6aeee8148007ab0a512.tar.gz
guix-arunisaac-c9efddf0eb6a1bd40667d6aeee8148007ab0a512.tar.lz
guix-arunisaac-c9efddf0eb6a1bd40667d6aeee8148007ab0a512.zip
Add python-urllib3-1.26.
Diffstat (limited to 'arunisaac/openconnect.scm')
-rw-r--r--arunisaac/openconnect.scm17
1 files changed, 16 insertions, 1 deletions
diff --git a/arunisaac/openconnect.scm b/arunisaac/openconnect.scm
index a268fe8..f9974f3 100644
--- a/arunisaac/openconnect.scm
+++ b/arunisaac/openconnect.scm
@@ -25,7 +25,9 @@
                 #:select (python-colorama python-poetry-core python-toml))
   #:use-module ((gnu packages python-crypto)
                 #:select (python-keyring python-pyotp))
-  #:use-module ((gnu packages python-web) #:select (python-requests))
+  #:use-module ((gnu packages python-web)
+                #:select (python-requests
+                          python-urllib3))
   #:use-module ((gnu packages python-xyz)
                 #:select (python-attrs
                           python-charset-normalizer
@@ -118,3 +120,16 @@
         (base32 "04zlajr77f6c7ai59l46as1idi0jjgbvj72lh4v5wfpz2s070pjp"))))
     (build-system python-build-system)
     (arguments (list #:tests? #f))))
+
+(define python-urllib3-1.26
+  (package
+    (inherit python-urllib3)
+    (version "1.26.15")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "urllib3" version))
+       (sha256
+        (base32
+         "01dkqv0rsjqyw4wrp6yj8h3bcnl7c678qkj845596vs7p4bqff4a"))))
+    (build-system python-build-system)))