summaryrefslogtreecommitdiff
path: root/gnu/packages/python.scm
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-03-13 19:59:37 +0000
committerAndreas Enge <andreas@enge.fr>2025-04-16 11:46:15 +0200
commit09ebf091855d888cbd8ad1084ab83feaf3f5d460 (patch)
treeecfd91b7b52c5109e3676c05b4717d0f4bb0cee9 /gnu/packages/python.scm
parent907ae7b07d70b0dcc90ba2691a1af4dc2e9dc893 (diff)
gnu: python-debug: Use G-Expressions.
* gnu/packages/python.scm (python-debug): Use G-Expressions, fix build. Change-Id: I940ec4fddcea03a258659ca044b0dad4948c4ed5
Diffstat (limited to 'gnu/packages/python.scm')
-rw-r--r--gnu/packages/python.scm8
1 files changed, 4 insertions, 4 deletions
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index e2349f04247..ebc9712294b 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -1487,10 +1487,10 @@ data types.")
(build-system gnu-build-system)
(arguments
(substitute-keyword-arguments (package-arguments python)
- ((#:configure-flags flags '())
- `(cons "--with-pydebug" ,flags))))
- (synopsis
- "Python with the debug hooks enabled")
+ ((#:configure-flags configure-flags)
+ #~(append #$configure-flags
+ (list "--with-pydebug")))))
+ (synopsis "Python with the debug hooks enabled")
(description
"This variant of Python provides an interpreter built with
@code{--with-pydebug} to help develop and debug extensions. See