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 <t_w_@freenet.de> Signed-off-by: Tobias Geerinckx-Rice <me@tobias.gr>
This commit is contained in:
parent
f858d5c8a5
commit
13cb9b3028
1 changed files with 1 additions and 1 deletions
|
@ -2446,7 +2446,7 @@ conventions and aliases in the same expression.")
|
||||||
(setenv "MAGICK_HOME" (assoc-ref inputs "imagemagick"))
|
(setenv "MAGICK_HOME" (assoc-ref inputs "imagemagick"))
|
||||||
(setenv "WAND_MAGICK_LIBRARY_SUFFIX" ".Q16")))
|
(setenv "WAND_MAGICK_LIBRARY_SUFFIX" ".Q16")))
|
||||||
(replace 'check
|
(replace 'check
|
||||||
(lambda _
|
(lambda* (#:key tests? #:allow-other-keys)
|
||||||
(when tests?
|
(when tests?
|
||||||
(invoke "pytest" "-vv")))))))
|
(invoke "pytest" "-vv")))))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
|
|
Reference in a new issue