diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-29 14:59:20 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-09-25 09:36:18 +0100 |
| commit | 7bdac6ee018d8674ffbc4c77e361cfe02b9acf7a (patch) | |
| tree | 273122d52d5769b457880fd1f009b1858ea042eb | |
| parent | 8ea317bb2b874b89273d9d6a76b0ab4fc41337d9 (diff) | |
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
| -rw-r--r-- | gnu/packages/python-xyz.scm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 514e624ca8..6d96fcccbf 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -38116,6 +38116,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") @@ -38125,11 +38127,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 |
