diff options
author | Christopher Baines <mail@cbaines.net> | 2018-03-24 10:54:23 +0000 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2018-12-31 09:22:53 +0000 |
commit | f66bd63e86f7788f1abe076d951d6d36f5ae6ff1 (patch) | |
tree | ea86adce7ca88fd036c9be29b88e72092bcc8eb5 | |
parent | c8558c418e8ac60f1a127862a2ec1984ee0cb661 (diff) | |
download | gnu-guix-f66bd63e86f7788f1abe076d951d6d36f5ae6ff1.tar gnu-guix-f66bd63e86f7788f1abe076d951d6d36f5ae6ff1.tar.gz |
gnu: Add python-colorlog.
-rw-r--r-- | gnu/packages/python.scm | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index ed1868e578..3ecdc1b7e3 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -15184,3 +15184,25 @@ class in a @acronym{DRY, Don't Repeat Yourself} way.") (synopsis "coala Dependency Management") (description "coala Dependency Management") (license #f))) + +(define-public python-colorlog + (package + (name "python-colorlog") + (version "3.1.2") + (source + (origin + (method url-fetch) + (uri (pypi-uri "colorlog" version)) + (sha256 + (base32 + "0i21sd6pggr2gqza41vyq2rqyb552wf5iwl4bc16i7kqislbd53z")))) + (build-system python-build-system) + (arguments + '(#:tests? #f)) + (propagated-inputs + `(("python-colorama" ,python-colorama))) + (home-page + "https://github.com/borntyping/python-colorlog") + (synopsis "Log formatting with colors!") + (description "Log formatting with colors!") + (license #f))) |