gnu: Add python-termcolor.

* gnu/packages/python.scm (python-termcolor, python2-termcolor): New
variables.
This commit is contained in:
Ben J Woodcroft 2016-09-26 15:26:17 +10:00 committed by Ben Woodcroft
parent f536dce522
commit 67f66812f5
No known key found for this signature in database
GPG key ID: E44DCCD146E0CCF4

View file

@ -6295,6 +6295,30 @@ (define-public python2-tlsh
(name "python2-tlsh")
(inputs `(("python" ,python-2)))))
(define-public python-termcolor
(package
(name "python-termcolor")
(version "1.1.0")
(source
(origin
(method url-fetch)
(uri (pypi-uri "python-termcolor" version))
(sha256
(base32
"0fv1vq14rpqwgazxg4981904lfyp84mnammw7y046491cv76jv8x"))))
(build-system python-build-system)
(arguments
;; There are no tests.
`(#:tests? #f))
(home-page "http://pypi.python.org/pypi/termcolor")
(synopsis "ANSII Color formatting for terminal output")
(description
"This package provides ANSII Color formatting for output in terminals.")
(license license:expat)))
(define-public python2-termcolor
(package-with-python2 python-termcolor))
(define-public python-libarchive-c
(package
(name "python-libarchive-c")