unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
* [PATCH 1/5] gnu: Add python-args.
@ 2016-01-13  1:27 宋文武
  2016-01-13  1:27 ` [PATCH 2/5] gnu: Add python-clint 宋文武
                   ` (4 more replies)
  0 siblings, 5 replies; 11+ messages in thread
From: 宋文武 @ 2016-01-13  1:27 UTC (permalink / raw)
  To: guix-devel; +Cc: 宋文武

* 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

^ permalink raw reply related	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2016-01-16  0:20 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-01-13  1:27 [PATCH 1/5] gnu: Add python-args 宋文武
2016-01-13  1:27 ` [PATCH 2/5] gnu: Add python-clint 宋文武
2016-01-15 15:07   ` Ludovic Courtès
2016-01-13  1:27 ` [PATCH 3/5] gnu: Add python-astor 宋文武
2016-01-15 15:08   ` Ludovic Courtès
2016-01-13  1:27 ` [PATCH 4/5] gnu: Add python-rply 宋文武
2016-01-15 16:11   ` Ludovic Courtès
2016-01-13  1:27 ` [PATCH 5/5] gnu: Add python-hy 宋文武
2016-01-15 16:12   ` Ludovic Courtès
2016-01-16  0:20     ` 宋文武
2016-01-15 15:04 ` [PATCH 1/5] gnu: Add python-args Ludovic Courtès

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).