guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

11/103: gnu: python-pyzmq: Fix #:configure-flags type.


From: guix-commits
Subject: 11/103: gnu: python-pyzmq: Fix #:configure-flags type.
Date: Wed, 5 Jan 2022 09:44:28 -0500 (EST)

lbraun pushed a commit to branch wip-python-pep517
in repository guix.

commit c0ab46cde127857a7b5341c5b6906c762d7b46b6
Author: Lars-Dominik Braun <lars@6xq.net>
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 d1fc6a2336..2fc7ab97cf 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -9646,7 +9646,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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]