[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 09/20] gnu: Add python-couleur
From: |
Muriithi Frederick Muriuki |
Subject: |
[PATCH 09/20] gnu: Add python-couleur |
Date: |
Fri, 14 Apr 2017 13:13:09 +0300 |
* gnu/packages/python.scm (python-couleur): New variable.
---
gnu/packages/python.scm | 29 +++++++++++++++++++++++++++++
1 file changed, 29 insertions(+)
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index 951b7c7..148ed74 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -14179,3 +14179,32 @@ Sure is heavily inspired by @code{RSpec Expectations}
and @code{should.js}")
(define-public python2-sure
(package-with-python2 python-sure))
+
+(define-public python-couleur
+ (package
+ (name "python-couleur")
+ (version "0.6.2")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "couleur" version))
+ (sha256
+ (base32
+ "1qqaxyqz74wvid0cr119dhcwz0h0if5b5by44zl49pd5z65v58k1"))))
+ (build-system python-build-system)
+ (arguments
+ `(;; The package builds successfully with python3, but the
+ ;; tests are python-2 dependent, (strings of the form
+ ;; ur'val-of-str' and imports of python-2 specific
+ ;; modules)
+ #:tests? #f))
+ (home-page
+ "http://github.com/gabrielfalcao/couleur")
+ (synopsis
+ "ANSI terminal tool for python, colored shell and other handy fancy
features")
+ (description
+ "Couleur is a handy tool to play around with ANSI features in a unix
terminal.")
+ (license license:asl2.0)))
+
+(define-public python2-couleur
+ (package-with-python2 python-couleur))
--
2.10.2
- [PATCH 03/20] gnu: Add python-pytest-httpbin, (continued)
- [PATCH 06/20] gnu: Add python-coverage-4.0.3, Muriithi Frederick Muriuki, 2017/04/14
- [PATCH 07/20] gnu: Add python-urllib3-1.12, Muriithi Frederick Muriuki, 2017/04/14
- [PATCH 08/20] gnu: Add python-sure, Muriithi Frederick Muriuki, 2017/04/14
- [PATCH 09/20] gnu: Add python-couleur,
Muriithi Frederick Muriuki <=
- [PATCH 10/20] gnu: Add python-misaka, Muriithi Frederick Muriuki, 2017/04/14
- [PATCH 11/20] gnu: Add python-steadymark, Muriithi Frederick Muriuki, 2017/04/14
- [PATCH 12/20] gnu: Add python-requests-2.8.1, Muriithi Frederick Muriuki, 2017/04/14
- [PATCH 13/20] gnu: Add python-rednose-0.4.3, Muriithi Frederick Muriuki, 2017/04/14
- [PATCH 14/20] gnu: Add python-nose-randomly, Muriithi Frederick Muriuki, 2017/04/14
- [PATCH 15/20] gnu: Add python-pbr-2.0.0, Muriithi Frederick Muriuki, 2017/04/14
- [PATCH 16/20] gnu: Add python-mock-1.3.0, Muriithi Frederick Muriuki, 2017/04/14
- [PATCH 17/20] gnu: Add python-httpretty, Muriithi Frederick Muriuki, 2017/04/14
- [PATCH 18/20] gnu: Add python-pyyaml-3.11, Muriithi Frederick Muriuki, 2017/04/14