guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit 30cb5d18559187ec2282e4bdbd8cf419583a07e6
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Tue Jul 29 14:59:20 2025 +0100
gnu: python-ansicolors: Switch to pyproject-build-system.
* gnu/packages/python-xyz.scm (python-ansicolors): Update to 1.1.8.
[build-system]: Use pyproject.
[native-inputs]: Remove python-tox and python-pytest-cov; add
python-pytest and python-setuptools.
Change-Id: I6f9ccda995916bad05aa246cab159d8d21309257
---
gnu/packages/python-xyz.scm | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index e379fe897a..06933aebd0 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -38191,6 +38191,8 @@ async I/O support.")
(license license:gpl2+)))
(define-public python-ansicolors
+ ;; XXX: Not maintained fork since 2017, consider to remove when there is no
+ ;; any users.
(package
(name "python-ansicolors")
(version "1.1.8")
@@ -38200,11 +38202,9 @@ async I/O support.")
(uri (pypi-uri "ansicolors" version ".zip"))
(sha256
(base32 "1q3jqglkq4z0f6nkkn8bswcwqg012i2grrc27kabr8286dg4zycr"))))
- (build-system python-build-system)
+ (build-system pyproject-build-system)
(native-inputs
- (list python-tox
- python-pytest-cov
- unzip))
+ (list python-pytest python-setuptools unzip))
(home-page "https://github.com/jonathaneunice/colors/")
(synopsis "ANSI colors for Python")
(description