guix-devel
[Top][All Lists]
Advanced

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

[PATCH 02/17] gnu: Add python-requests-toolbelt.


From: Leo Famulari
Subject: [PATCH 02/17] gnu: Add python-requests-toolbelt.
Date: Sun, 3 Jan 2016 19:05:00 -0500

* gnu/packages/python.scm (python-requests-toolbelt): New variable.
---
 gnu/packages/python.scm | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)

diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index 496bdd9..8f05b5a 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -6637,3 +6637,22 @@ the standard library.")
 for atomic filesystem operations.")
     (home-page "https://github.com/untitaker/python-atomicwrites";)
     (license license:expat)))
+
+(define-public python-requests-toolbelt
+  (package
+    (name "python-requests-toolbelt")
+    (version "0.5.0")
+    (source (origin
+             (method url-fetch)
+             (uri (pypi-uri "requests-toolbelt" version))
+             (sha256
+              (base32
+               "1kbms1s52dhb98vbpaprr15b0ijdbqp500lpfsyjccpd8cjkyngk"))))
+    (build-system python-build-system)
+    (propagated-inputs
+     `(("python-requests" ,python-requests)))
+    (synopsis "Extensions to python-requests")
+    (description "This is a toolbelt of useful classes and functions to be used
+with python-requests.")
+    (home-page "https://github.com/sigmavirus24/requests-toolbelt";)
+    (license asl2.0)))
-- 
2.6.4




reply via email to

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