guix-commits
[Top][All Lists]
Advanced

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

11/16: gnu: Add python-consul.


From: Efraim Flashner
Subject: 11/16: gnu: Add python-consul.
Date: Sun, 18 Sep 2016 20:19:59 +0000 (UTC)

efraim pushed a commit to branch master
in repository guix.

commit 257023978aca29d381d63d00e4a6cc1d1bd2857a
Author: Efraim Flashner <address@hidden>
Date:   Sun Sep 11 21:33:40 2016 +0300

    gnu: Add python-consul.
    
    * gnu/packages/python.scm (python-consul): New variable.
---
 gnu/packages/python.scm |   30 ++++++++++++++++++++++++++++++
 1 file changed, 30 insertions(+)

diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index 648b8be..edc99dc 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -10213,6 +10213,36 @@ interface for programs.")
        `(("python2-setuptools" ,python2-setuptools)
          ,@(package-native-inputs base))))))
 
+(define-public python-consul
+  (package
+    (name "python-consul")
+    (version "0.6.1")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (pypi-uri "python-consul" version))
+        (sha256
+         (base32
+          "0rfyxcy4cr3x848vhx876ifalxd5ghq6l5x813m49h4vq2d4jiq8"))))
+    (build-system python-build-system)
+    (native-inputs
+     `(("python-pytest" ,python-pytest)
+       ("python-requests" ,python-requests)
+       ("python-six" ,python-six)))
+    (home-page "https://github.com/cablehead/python-consul";)
+    (synopsis "Python client for Consul")
+    (description
+     "Python client for @url{http://www.consul.io/,Consul}, a tool for service
+discovery, monitoring and configuration.")
+    (license license:expat)))
+
+(define-public python2-consul
+  (let ((consul (package-with-python2 python-consul)))
+    (package (inherit consul)
+      (native-inputs
+       `(("python2-setuptools" ,python2-setuptools)
+         ,@(package-native-inputs consul))))))
+
 (define-public python-schematics
   (package
     (name "python-schematics")



reply via email to

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