lbraun pushed a commit to branch wip-python-pep517
in repository guix.
commit ee4fa322dbfed09aa32457bfcdee5ff1078be720
Author: Lars-Dominik Braun <[email protected]>
AuthorDate: Thu Nov 25 12:34:47 2021 +0100
gnu: python-pyzmq: Fix #:configure-flags type.
Should be alist.
* gnu/packages/python-xyz.scm (python-pyzmq)[#:configure-flags]: Turn
into alist.
---
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 1c77e9dbd4..3a6a62ac75 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -10171,7 +10171,7 @@ applications.")
(build-system python-build-system)
(arguments
`(#:configure-flags
- (list (string-append "--zmq=" (assoc-ref %build-inputs "zeromq")))
+ `(@ ("--zmq" . ,(assoc-ref %build-inputs "zeromq")))
#:phases
(modify-phases %standard-phases
(add-before 'check 'build-extensions