1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-19 16:50:38 +02:00

gnu: python-terminaltables: Switch to pyproject.

* gnu/packages/python-xyz.scm (python-terminaltables):
[build-system]: Switch to pyproject-build-system.
[arguments]<#:tests?>: Disable them for now.
[native-inputs]: Add python-colorclass, python-colorama,
python-pytest, python-setuptools, python-termcolor.

Change-Id: I15efe0d4123d941b1af560f71e554c6cb9386315
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
This commit is contained in:
Nicolas Graves
2025-10-19 16:11:21 +02:00
committed by Sharlatan Hellseher
parent c1ee0d84e2
commit 064a0c847a

View File

@@ -18588,12 +18588,21 @@ a hash value.")
(version "3.1.0")
(source
(origin
(method url-fetch)
(uri (pypi-uri "terminaltables" version))
(sha256
(base32
"109vhldk6nv1z3hzp4dyqf6rjvlhl0y2k5k7qcm9fcrq5swhxszk"))))
(build-system python-build-system)
(method git-fetch)
(uri (git-reference
(url "https://github.com/Robpol86/terminaltables")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256 (base32 "1jlm7n6kxypbr8mvwpd7hf9hbfk0a002ad03wqgxlri4aw8pk39a"))))
(build-system pyproject-build-system)
;; XXX: A lot of test fail with flaky behavior.
(arguments (list #:tests? #f))
(native-inputs
(list python-colorclass
python-colorama
python-pytest
python-setuptools
python-termcolor))
(home-page "https://github.com/Robpol86/terminaltables")
(synopsis
"Generate simple tables in terminals from a nested list of strings")