summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2025-12-24 18:08:06 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-12-31 12:24:14 +0000
commit5fc8a1d6e925df2acd7146a32ed2d8c2f2a2e712 (patch)
tree23c53c8c04b2d44fb950682bea354d18f8354e79 /gnu
parentee27101aa34bfe70b9ae3c1c68c7c89a7b307c6e (diff)
gnu: python-coloredlogs: Update to 15.0.1.
* gnu/packages/python-xyz.scm (python-coloredlogs): Update to 15.0.1. [source]: Switch to git-fetch. [build-system]: Switch to pyproject-build-system. [arguments]<#:tests?>: Enable them. <#:test-flags>: Disable failing tests. [native-inputs]: Add python-pytest, python-setuptools, python-verboselogs. Change-Id: If21f11357fdce225de6caa3b7b77b6ef7ed6cb5b Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/python-xyz.scm30
1 files changed, 20 insertions, 10 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 0e10aa23d9e..f739d539fb3 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -6257,20 +6257,30 @@ for additional processing.")
6257(define-public python-coloredlogs 6257(define-public python-coloredlogs
6258 (package 6258 (package
6259 (name "python-coloredlogs") 6259 (name "python-coloredlogs")
6260 (version "10.0") 6260 (version "15.0.1")
6261 (source 6261 (source
6262 (origin 6262 (origin
6263 (method url-fetch) 6263 (method git-fetch)
6264 (uri (pypi-uri "coloredlogs" version)) 6264 (uri (git-reference
6265 (url "https://github.com/xolox/python-coloredlogs")
6266 (commit version)))
6267 (file-name (git-file-name name version))
6265 (sha256 6268 (sha256
6266 (base32 6269 (base32 "1c83h3cvd2qww2m9myxrnqh0lr9fllx8zfb26f64lcvwd3cli1sf"))))
6267 "0dkw6xp0r1dwgz4s2f58npx5nxfq51wf4l6qkm5ib27slgfs4sdq")))) 6270 (build-system pyproject-build-system)
6268 (build-system python-build-system)
6269 (arguments 6271 (arguments
6270 `(;Tests require some updated modules 6272 (list
6271 #:tests? #f)) 6273 #:test-flags
6272 (propagated-inputs 6274 #~(list "-k"
6273 (list python-capturer)) 6275 (string-join
6276 (list "not test_auto_install" ; Unclear why this fails.
6277 ;; XXX: Require a "script" executable.
6278 "test_cli_conversion"
6279 "test_empty_conversion"
6280 "test_output_interception")
6281 " and not "))))
6282 (native-inputs (list python-pytest python-setuptools python-verboselogs))
6283 (propagated-inputs (list python-capturer))
6274 (home-page "https://coloredlogs.readthedocs.io") 6284 (home-page "https://coloredlogs.readthedocs.io")
6275 (synopsis "Colored stream handler for Python's logging module") 6285 (synopsis "Colored stream handler for Python's logging module")
6276 (description 6286 (description