guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

05/10: gnu: Add python-requests-2.20.


From: guix-commits
Subject: 05/10: gnu: Add python-requests-2.20.
Date: Sat, 13 Jul 2019 09:14:18 -0400 (EDT)

civodul pushed a commit to branch master
in repository guix.

commit 97f0bd7d68f6845c91c01dffb5181c928db5108f
Author: Jacob MacDonald <address@hidden>
Date:   Thu Jul 11 15:41:26 2019 -0500

    gnu: Add python-requests-2.20.
    
    * gnu/packages/python-web.scm (python-requests-2.20): New variable.
    
    Signed-off-by: Ludovic Courtès <address@hidden>
---
 gnu/packages/python-web.scm | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)

diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index 04f5374..72d4eba 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -1352,6 +1352,22 @@ WebSocket usage in Python programs.")
 than Python’s urllib2 library.")
     (license license:asl2.0)))
 
+;; Some software requires an older version of Requests, notably Docker/Docker
+;; Compose.
+(define-public python-requests-2.20
+  (package (inherit python-requests)
+           (version "2.20.1")
+           (source (origin
+                     (method url-fetch)
+                     (uri (pypi-uri "requests" version))
+                     (sha256
+                      (base32
+                       
"0qzj6cgv3k9wyj7wlxgz7xq0cfg4jbbkfm24pp8dnhczwl31527a"))))
+           (propagated-inputs
+            `(("python-urllib3" ,python-urllib3-1.24)
+              ("python-idna" ,python-idna-2.7)
+              ,@(package-propagated-inputs python-requests)))))
+
 ;; Some software requires an older version of Requests, notably Docker
 ;; Compose.
 (define-public python-requests-2.7



reply via email to

[Prev in Thread] Current Thread [Next in Thread]