diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-12-01 09:19:44 +0000 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-12-13 21:01:38 +0000 |
commit | 8aa54b9ff6f2cdaace37a3920a9209677c870d11 (patch) | |
tree | df795eb5375585a3ebd548ba9d811a03659aa2e0 /gnu/packages/python-xyz.scm | |
parent | 0817e9ba777c3f5e7df1972e4cbd3f4e0ac8eb05 (diff) |
gnu: python-termcolor: Update to 2.5.0.
* gnu/packages/python-xyz.scm (python-termcolor): Update to 2.5.0.
Change-Id: I1921a14df2b51fa441c69a9a3ab59e0e827e4dd9
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r-- | gnu/packages/python-xyz.scm | 14 |
1 files changed, 2 insertions, 12 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index c4a98ee6ad..605085a10e 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -17481,24 +17481,14 @@ a hash value.") (define-public python-termcolor (package (name "python-termcolor") - (version "2.4.0") + (version "2.5.0") (source (origin (method url-fetch) (uri (pypi-uri "termcolor" version)) (sha256 - (base32 - "0ykvmjrsjr5w4h63x7qmx6rsdb1p5a4nv8wgg7nl3b688xhfbfda")))) + (base32 "0vwaxyr2vk8gi7s1slq74nb0ssbb0wcn208ziqp48j3dv8kqv3cr")))) (build-system pyproject-build-system) - (arguments - (list - #:phases - '(modify-phases %standard-phases - (add-after 'unpack 'fix-pyproject - (lambda _ - ;; The build system doesn't like to hear of Python 3.13. - (substitute* "pyproject.toml" - ((" \"Programming Language .*") ""))))))) (native-inputs (list python-hatch-vcs python-hatchling |