From ad6ad493c74b0079291866194abf9afdbc4c43dc Mon Sep 17 00:00:00 2001 From: Hugo Buddelmeijer Date: Mon, 5 Jan 2026 19:55:37 +0100 Subject: [PATCH] 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 Signed-off-by: Rutherther --- 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 23589ce1f532facd7a6fc879e7e859e2cf803b35..f917e58fb377eec9f463afb112990ba4a0b42d4e 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.")