guix-commits
[Top][All Lists]
Advanced

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

06/07: gnu: Add python-botocore.


From: David Thompson
Subject: 06/07: gnu: Add python-botocore.
Date: Tue, 02 Feb 2016 14:27:07 +0000

davexunit pushed a commit to branch master
in repository guix.

commit 935fcd5cf625046f707f18f2992717e63c7aa412
Author: David Thompson <address@hidden>
Date:   Mon Dec 7 16:22:20 2015 -0500

    gnu: Add python-botocore.
    
    * gnu/packages/python.scm (python-botocore): New variable.
---
 gnu/packages/python.scm |   30 ++++++++++++++++++++++++++++++
 1 files changed, 30 insertions(+), 0 deletions(-)

diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index 5e046a1..463b9ba 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -7380,3 +7380,33 @@ document.")
 
 (define-public python2-jmespath
   (package-with-python2 python-jmespath))
+
+(define-public python-botocore
+  (package
+   (name "python-botocore")
+   (version "1.3.17")
+   (source
+    (origin
+     (method url-fetch)
+     (uri (pypi-uri "botocore" version))
+     (sha256
+      (base32
+       "08vpvdixx1c1lfv6vzjig68bpiir7wfyhzf49ysxgvhbprg5ra0w"))))
+   (build-system python-build-system)
+   (inputs
+    `(("python-dateutil" ,python-dateutil-2)
+      ("python-docutils" ,python-docutils)
+      ("python-mock" ,python-mock)
+      ("python-nose" ,python-nose)
+      ("python-setuptools" ,python-setuptools)
+      ("python-tox" ,python-tox)
+      ("python-wheel" ,python-wheel)
+      ("python-jmespath" ,python-jmespath)))
+   (home-page "https://github.com/boto/botocore";)
+   (synopsis "Low-level interface to AWS")
+   (description "Botocore is a Python library that provides a low-level
+interface to the Amazon Web Services (AWS) API.")
+   (license asl2.0)))
+
+(define-public python2-botocore
+  (package-with-python2 python-botocore))



reply via email to

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