[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 2/5] gnu: Add python2-ttystatus.
From: |
Arun Isaac |
Subject: |
[PATCH 2/5] gnu: Add python2-ttystatus. |
Date: |
Wed, 8 Mar 2017 23:28:32 +0530 |
* gnu/packages/python.scm (python2-ttystatus): New variable.
---
gnu/packages/python.scm | 25 +++++++++++++++++++++++++
1 file changed, 25 insertions(+)
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index ea357ad00..443958548 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -13464,3 +13464,28 @@ need to do, such as parsing the command line for
options, and
iterating over input files.")
(license license:gpl2+)))
+(define-public python2-ttystatus
+ (package
+ (name "python2-ttystatus")
+ (version "0.32")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+
"http://git.liw.fi/cgi-bin/cgit/cgit.cgi/ttystatus/snapshot/ttystatus-"
+ version ".tar.gz"))
+ (sha256
+ (base32
+ "0b5g889jj23r2w1hi300cdldx6jvspanp0ybf5n1qvdvl150aamf"))))
+ (build-system python-build-system)
+ (arguments
+ `(#:python ,python-2))
+ (home-page "https://liw.fi/ttystatus/")
+ (synopsis "Python library for showing progress reporting and
+status updates on terminals")
+ (description "@code{python2-ttystatus} is a python library for
+showing progress reporting and status updates on terminals, for
+command line programs. Output is automatically adapted to the width
+of the terminal: truncated if it does not fit, and resized if the
+terminal size changes.")
+ (license license:gpl3+)))
--
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