nckx pushed a commit to branch master
in repository guix.
commit 13cb9b302868b5a966a6ae177412c474084f4bf1
Author: Hilton Chain <[email protected]>
AuthorDate: Fri Jun 30 15:56:45 2023 +0800
gnu: python-wand: Fix build.
Fixes <https://issues.guix.gnu.org/64350>.
* gnu/packages/python-xyz.scm (python-wand)[arguments]<#:phases>: Pass
tests?
to 'check.
Reported-by: Thorsten Wilms <[email protected]>
Signed-off-by: Tobias Geerinckx-Rice <[email protected]>
---
gnu/packages/python-xyz.scm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 6a29701219..755b0af4b6 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -2446,7 +2446,7 @@ conventions and aliases in the same expression.")
(setenv "MAGICK_HOME" (assoc-ref inputs "imagemagick"))
(setenv "WAND_MAGICK_LIBRARY_SUFFIX" ".Q16")))
(replace 'check
- (lambda _
+ (lambda* (#:key tests? #:allow-other-keys)
(when tests?
(invoke "pytest" "-vv")))))))
(native-inputs