diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-31 21:15:39 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-08-08 16:49:00 +0100 |
commit | a5567625e7e678409430b6bbf79c387ec928a75e (patch) | |
tree | 5490924dd19d3a758b95de0acd439285e736c0e3 | |
parent | fb9a1c24cacd9abbd568f73e7f8e45b11ecc825e (diff) |
gnu: python-colorthief: Do not try to run tests.
* gnu/packages/python-xyz.scm (python-colorthief): Tests were absent in
PyPI or Git.
[arguments] <tests?>: Disable them.
[native-inputs]: Remove python-wheel.
Change-Id: Ib63b612913a3b494c7c0f4a717a790d71230f8d6
-rw-r--r-- | gnu/packages/python-xyz.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index d21367a0b3..d3a897bdb6 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -2265,7 +2265,9 @@ as functions or string constants to form colored terminal output.") (sha256 (base32 "08bjsmmkihyksms2vgndslln02rvw56lkxz28d39qrnxbg4v1707")))) (build-system pyproject-build-system) - (native-inputs (list python-setuptools python-wheel)) + (arguments + (list #:tests? #f)) ;no tests in PyPI or Git + (native-inputs (list python-setuptools)) (propagated-inputs (list python-pillow)) (home-page "https://github.com/fengsp/color-thief-py") (synopsis "Grab the color palette of an image") |