[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
07/11: gnu: Add python-coloredlogs.
From: |
Ludovic Court�s |
Subject: |
07/11: gnu: Add python-coloredlogs. |
Date: |
Thu, 26 Oct 2017 01:30:09 -0400 (EDT) |
civodul pushed a commit to branch master
in repository guix.
commit 00463093981f0b3fb4bf33209bd3364dbf16367d
Author: ng0 <address@hidden>
Date: Sat Oct 21 23:29:17 2017 +0000
gnu: Add python-coloredlogs.
* gnu/packages/python.scm (python-coloredlogs, python2-coloredlogs): New
variables.
Signed-off-by: Ludovic Courtès <address@hidden>
---
gnu/packages/python.scm | 29 +++++++++++++++++++++++++++++
1 file changed, 29 insertions(+)
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index 106b23e..f003cb2 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -1183,6 +1183,35 @@ add the log levels NOTICE, SPAM, SUCCESS and VERBOSE.")
(define-public python2-verboselogs
(package-with-python2 python-verboselogs))
+(define-public python-coloredlogs
+ (package
+ (name "python-coloredlogs")
+ (version "7.3")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "coloredlogs" version))
+ (sha256
+ (base32
+ "1blcann6dyg5dhps9pg12rn0q0rjrlajpmmil0gy0j4cbvnl2il9"))))
+ (build-system python-build-system)
+ (arguments
+ `(;Tests require some updated modules
+ #:tests? #f))
+ (propagated-inputs
+ `(("python-capturer" ,python-capturer)))
+ (home-page "https://coloredlogs.readthedocs.io";)
+ (synopsis "Colored stream handler for Python's logging module")
+ (description
+ "The @code{coloredlogs} package enables colored terminal output for
+Python's logging module. The @code{ColoredFormatter} class inherits from
address@hidden and uses ANSI escape sequences to render your logging
+messages in color.")
+ (license license:expat)))
+
+(define-public python2-coloredlogs
+ (package-with-python2 python-coloredlogs))
+
(define-public python-eventlet
(package
(name "python-eventlet")
- branch master updated (1765056 -> b1e9837), Ludovic Court�s, 2017/10/26
- 01/11: guix package: '--list-available' does not show superseded packages., Ludovic Court�s, 2017/10/26
- 03/11: challenge: Display an overall summary., Ludovic Court�s, 2017/10/26
- 02/11: substitute: Don't send more than 1000 requests in a row., Ludovic Court�s, 2017/10/26
- 05/11: gnu: Add python-capturer., Ludovic Court�s, 2017/10/26
- 07/11: gnu: Add python-coloredlogs.,
Ludovic Court�s <=
- 09/11: gnu: Add python2-roca-detect., Ludovic Court�s, 2017/10/26
- 08/11: gnu: Add python2-pgpdump., Ludovic Court�s, 2017/10/26
- 11/11: gnu: virt-manager: Enable persistent configuration support., Ludovic Court�s, 2017/10/26
- 04/11: gnu: Add python-humanfriendly., Ludovic Court�s, 2017/10/26
- 10/11: gnu: virt-manager: Wrap with GSettings schema and GIO modules search paths., Ludovic Court�s, 2017/10/26
- 06/11: gnu: Add python-verboselogs., Ludovic Court�s, 2017/10/26