diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-08-16 19:43:55 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-09-25 09:35:59 +0100 |
| commit | c8a847b2bf69a9dde69fd94af6e49e007f1be133 (patch) | |
| tree | 7a9853a39a7514f54c822626811443476949096e /gnu/packages/python-xyz.scm | |
| parent | 70b8f3bb3589da65b65dc85357cec9de71d39cc6 (diff) | |
gnu: python-colorlog: Update to 6.9.0.
* gnu/packages/python-xyz.scm (python-colorlog): Update to 6.9.0.
[build-system] Use pyproject.
[arguments] <phases>: Use default 'check.
[native-inputs]: Add python-setuptools.
Change-Id: I7b054c74b0c3faf7d0221fef670edb649fce4631
Diffstat (limited to 'gnu/packages/python-xyz.scm')
| -rw-r--r-- | gnu/packages/python-xyz.scm | 18 |
1 files changed, 5 insertions, 13 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 2f3d2db1d5..ee51f14cbd 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -3302,25 +3302,17 @@ package descriptions or to unify multiple existing APIs into a single API.") (define-public python-colorlog (package (name "python-colorlog") - (version "6.6.0") + (version "6.9.0") (source (origin (method url-fetch) (uri (pypi-uri "colorlog" version)) (sha256 - (base32 "1s7x0v872h8aks8xp01wmv6hzisxqjrh1svbbcycir0980h76krl")))) - (build-system python-build-system) - (arguments - (list - #:phases - #~(modify-phases %standard-phases - (replace 'check - (lambda* (#:key inputs outputs tests? #:allow-other-keys) - (when tests? - (add-installed-pythonpath inputs outputs) - (invoke "python" "-m" "pytest"))))))) + (base32 "1hka1kf6p53hppv05xsa5byr4gasfaaq7r2g3x7gb51vp6hm9fmz")))) + (build-system pyproject-build-system) (native-inputs - (list python-pytest)) + (list python-pytest + python-setuptools)) (home-page "https://github.com/borntyping/python-colorlog") (synopsis "Log formatting with colors for python") (description "The @code{colorlog.ColoredFormatter} is a formatter for use |
