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.")
1487 (build-system gnu-build-system) 1487 (build-system gnu-build-system)
1488 (arguments 1488 (arguments
1489 (substitute-keyword-arguments (package-arguments python) 1489 (substitute-keyword-arguments (package-arguments python)
1490 ((#:configure-flags flags '()) 1490 ((#:configure-flags configure-flags)
1491 `(cons "--with-pydebug" ,flags)))) 1491 #~(append #$configure-flags
1492 (synopsis 1492 (list "--with-pydebug")))))
1493 "Python with the debug hooks enabled") 1493 (synopsis "Python with the debug hooks enabled")
1494 (description 1494 (description
1495 "This variant of Python provides an interpreter built with 1495 "This variant of Python provides an interpreter built with
1496@code{--with-pydebug} to help develop and debug extensions. See 1496@code{--with-pydebug} to help develop and debug extensions. See