gnu: python-debug: Use G-Expressions.

* gnu/packages/python.scm (python-debug): Use G-Expressions, fix build.

Change-Id: I940ec4fddcea03a258659ca044b0dad4948c4ed5
This commit is contained in:
Sharlatan Hellseher 2025-03-13 19:59:37 +00:00 committed by Andreas Enge
parent 907ae7b07d
commit 09ebf09185
No known key found for this signature in database
GPG key ID: F7D5C9BF765C61E3

View file

@ -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