This is an automated email from the git hooks/post-receive script.
janneke pushed a commit to branch core-packages-team
in repository guix.
The following commit(s) were added to refs/heads/core-packages-team by this
push:
new f0571afd0f squash! gnu: python: Use G-Expressions.
f0571afd0f is described below
commit f0571afd0ff0c7fad40ab3edfb16937b443b9423
Author: Janneke Nieuwenhuizen <[email protected]>
AuthorDate: Fri Jan 3 09:54:12 2025 +0100
squash! gnu: python: Use G-Expressions.
* gnu/packages/python.scm (python-debug): Update accordingly.
Change-Id: I58b7eebae990ddcb78e35673f209ac2250e93e03
---
gnu/packages/python.scm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index dfc6729746..2cc1b98bc2 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -1151,8 +1151,8 @@ data types.")
(build-system gnu-build-system)
(arguments
(substitute-keyword-arguments (package-arguments python)
- ((#:configure-flags flags '())
- `(cons "--with-pydebug" ,flags))))
+ ((#:configure-flags flags #~'())
+ #~(cons "--with-pydebug" #$flags))))
(synopsis
"Python with the debug hooks enabled")
(description