From 6892f496896271c7901ca6fd91547b9de643ccb2 Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Tue, 23 Sep 2025 21:10:11 +0100 Subject: [PATCH] gnu: python-wxpython: Fix tests. * gnu/packages/wxwidgets.scm (python-wxpython)[arguments] : Use 'custom. : Provide them. [native-inputs]: Remove python-wheel. Change-Id: I062b47773737b1aac38847c1b956991a14edbe0e --- gnu/packages/wxwidgets.scm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/gnu/packages/wxwidgets.scm b/gnu/packages/wxwidgets.scm index 3f5fcbb07c9..d7fb7543d8f 100644 --- a/gnu/packages/wxwidgets.scm +++ b/gnu/packages/wxwidgets.scm @@ -302,6 +302,8 @@ and many other languages.") (outputs '("out" "debug")) (arguments (list + #:test-backend #~'custom + #:test-flags #~(list "build.py" "-v" "test") #:modules '((guix build pyproject-build-system) (guix build utils) (ice-9 ftw) @@ -355,7 +357,7 @@ except ImportError: (inputs (list gtk+ wxwidgets)) (native-inputs - (list pkg-config python-setuptools python-waf python-wheel)) + (list pkg-config python-setuptools python-waf)) (propagated-inputs (list python-numpy python-pillow python-six)) (home-page "https://wxpython.org/")