guix_mirror_bot pushed a commit to branch next-master
in repository guix.

commit 7770c4c6c38f736f3e20ac107843bcd0a6bf5e87
Author: Hugo Buddelmeijer <[email protected]>
AuthorDate: Mon Jan 5 19:55:37 2026 +0100

    gnu: python-forbiddenfruit: Fix build.
    
    * gnu/packages/python-xyz.scm (python-forbiddenfruit): Fix build.
    [arguments]<#:phases>: Updated 'check phase so the coverage part is skipped.
    [native-inputs]: Remove python-coverage.
    
    Change-Id: I034a0be6dc87eb8b5a6d0c3029c5e4ffed43be28
    Signed-off-by: Sharlatan Hellseher <[email protected]>
---
 gnu/packages/python-xyz.scm | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 0188116c12..4fd6bc7103 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -29776,8 +29776,9 @@ that take parsers as their arguments and return them as 
result values.")
           (replace 'check
             (lambda* (#:key tests? #:allow-other-keys)
               (when tests?
-                (invoke "make" "SKIP_DEPS=1")))))))
-    (native-inputs (list python-coverage python-pynose python-setuptools))
+                (invoke "make" "prepare" "SKIP_DEPS=1")
+                (invoke "nosetests")))))))
+    (native-inputs (list python-pynose python-setuptools))
     (home-page "https://github.com/clarete/forbiddenfruit";)
     (synopsis "Patch python built-in objects")
     (description "This project allows Python code to extend built-in types.")

Reply via email to