guix_mirror_bot pushed a commit to branch python-team
in repository guix.

commit 623ee88257899cf2da8b4a855d301af07eed69ba
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Thu Jul 31 21:15:39 2025 +0100

    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
---
 gnu/packages/python-xyz.scm | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 6b11f5d8ac..7d9c5dc965 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -2358,7 +2358,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")

Reply via email to