guix-devel
[Top][All Lists]
Advanced

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

[PATCH 1/5] gnu: Add python-args.


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

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

diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index 4ab1eed..0886809 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -6620,3 +6620,25 @@ the standard library.")
 
 (define-public python2-contextlib2
   (package-with-python2 python-contextlib2))
+
+(define-public python-args
+  (package
+    (name "python-args")
+    (version "0.1.0")
+    (source (origin
+              (method url-fetch)
+              (uri (pypi-uri "args" version))
+              (sha256
+               (base32
+                "057qzi46h5dmxdqknsbrssn78lmqjlnm624iqdhrnpk26zcbi1d7"))))
+    (build-system python-build-system)
+    (inputs
+     `(("python-setuptools" ,python-setuptools)))
+    (home-page "https://github.com/kennethreitz/args";)
+    (synopsis "CLI argument interface")
+    (description
+     "This module provides the CLI argument interface for clint.")
+    (license bsd-3)))
+
+(define-public python2-args
+  (package-with-python2 python-args))
-- 
2.5.0




reply via email to

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