(Hmm, maybe this patch was not seen because it's so far down in the thread
"Stuck on KiCad dependency wxPython". So I'm resending it to the top.)
While there was already a #:configure-flags for the "install" target,
it was not used when building. Use it.
* guix/build/python-build-system.scm (build): Modified.
---
guix/build/python-build-system.scm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/guix/build/python-build-system.scm b/guix/build/python-build-system.scm
index 9109fb4..65824a3 100644
--- a/guix/build/python-build-system.scm
+++ b/guix/build/python-build-system.scm
@@ -44,9 +44,9 @@
(zero? (apply system* "python" "setup.py" command params)))
(error "no setup.py found")))
-(define* (build #:rest empty)
+(define* (build #:key (configure-flags '()) #:allow-other-keys)
"Build a given Python package."
- (call-setuppy "build" '()))
+ (call-setuppy "build" configure-flags))
(define* (check #:key tests? test-target #:allow-other-keys)
"Run the test suite of a given Python package."