guix-devel
[Top][All Lists]
Advanced

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

[PATCH 2/5] gnu: Add python-clint.


From: 宋文武
Subject: [PATCH 2/5] gnu: Add python-clint.
Date: Wed, 13 Jan 2016 09:27:24 +0800

* gnu/packages/python.scm (python-clint, python2-clint): New variables.
---
 gnu/packages/python.scm | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index 0886809..e54f521 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -6642,3 +6642,27 @@ the standard library.")
 
 (define-public python2-args
   (package-with-python2 python-args))
+
+(define-public python-clint
+  (package
+    (name "python-clint")
+    (version "0.5.1")
+    (source (origin
+              (method url-fetch)
+              (uri (pypi-uri "clint" version))
+              (sha256
+               (base32
+                "1an5lkkqk1zha47198p42ji3m94xmzx1a03dn7866m87n4r4q8h5"))))
+    (build-system python-build-system)
+    (inputs
+     `(("python-args" ,python-args)
+       ("python-setuptools" ,python-setuptools)))
+    (home-page "https://github.com/kennethreitz/clint";)
+    (synopsis "Command line interface tools")
+    (description
+     "Clint is a Python module filled with a set of tools for developing
+commandline applications.")
+    (license isc)))
+
+(define-public python2-clint
+  (package-with-python2 python-clint))
-- 
2.5.0




reply via email to

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