[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 1/5] gnu: Add python2-cliapp.
From: |
Arun Isaac |
Subject: |
[PATCH 1/5] gnu: Add python2-cliapp. |
Date: |
Wed, 8 Mar 2017 23:28:31 +0530 |
* gnu/packages/python.scm (python2-cliapp): New variable.
---
gnu/packages/python.scm | 29 ++++++++++++++++++++++++++++-
1 file changed, 28 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index 1ce0cc47e..ea357ad00 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -30,7 +30,7 @@
;;; Copyright © 2016 Stefan Reichoer <address@hidden>
;;; Copyright © 2016 Dylan Jeffers <address@hidden@openmailbox.org>
;;; Copyright © 2016 Alex Vong <address@hidden>
-;;; Copyright © 2016 Arun Isaac <address@hidden>
+;;; Copyright © 2016, 2017 Arun Isaac <address@hidden>
;;; Copyright © 2016, 2017 Julien Lepiller <address@hidden>
;;; Copyright © 2016, 2017 Tobias Geerinckx-Rice <address@hidden>
;;; Copyright © 2016, 2017 Thomas Danckaert <address@hidden>
@@ -13437,3 +13437,30 @@ specified to apply on the key before comparison (e.g.
@code{string.lower})).")
Python. It is based on Parsing Expression Grammars, PEG. With pyPEG you can
parse many formal languages.")
(license license:gpl2)))
+
+(define-public python2-cliapp
+ (package
+ (name "python2-cliapp")
+ (version "1.20160724")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "http://git.liw.fi/cgi-bin/cgit/cgit.cgi/cliapp/snapshot/cliapp-"
+ version ".tar.gz"))
+ (sha256
+ (base32
+ "025cyi75vxyghbm4hav8dz4fzwksshddavy9g9fwr440awcvw74f"))))
+ (build-system python-build-system)
+ (arguments
+ `(#:python ,python-2))
+ (propagated-inputs
+ `(("python2-pyaml" ,python2-pyaml)))
+ (home-page "https://liw.fi/cliapp/")
+ (synopsis "Python framework for command line programs")
+ (description "@code{python2-cliapp} is a python framework for
+command line programs. It contains the typical stuff such programs
+need to do, such as parsing the command line for options, and
+iterating over input files.")
+ (license license:gpl2+)))
+
--
2.11.0
- [PATCH 1/5] gnu: Add python2-cliapp., Arun Isaac, 2017/03/08
- [PATCH 4/5] gnu: Add python2-larch., Arun Isaac, 2017/03/08
- [PATCH 5/5] gnu: Add obnam., Arun Isaac, 2017/03/08
- [PATCH 3/5] gnu: Add python2-tracing., Arun Isaac, 2017/03/08
- [PATCH 2/5] gnu: Add python2-ttystatus., Arun Isaac, 2017/03/08
- Re: [PATCH 1/5] gnu: Add python2-cliapp., Danny Milosavljevic, 2017/03/08
- [PATCH 1/5] gnu: Add python2-cliapp.,
Arun Isaac <=