summaryrefslogtreecommitdiff
path: root/gnu/packages/python-build.scm
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2026-03-11 23:12:16 +0100
committerLudovic Courtès <ludo@gnu.org>2026-03-20 13:27:16 +0100
commit1ae20f03f43a2af2bcde3751a2809fe152298d34 (patch)
treebe11f116044ab4cbc7994e2cf88ded0e21db4bbc /gnu/packages/python-build.scm
parent4ba653e637940b147ea5cdcf45397b8ac7f3d014 (diff)
gnu: Reference the inherited inputs values.
This commit was made by running this command: sed -e's/modify-inputs (package-\([a-z-]*\)inputs [a-zA-Z0-9-]\+)/modify-inputs \1inputs/g' -i gnu/packages/*.scm … and then reverting individual hunks where the change would trigger unbound variable warnings or other issues (such as ‘native-inputs’ is bound in the body of the ‘inputs’ field, but it refers to the ‘native-inputs’ thunk defined just above). Change-Id: I6d94819f2809313fa1fbefc61897502ee7d66fab
Diffstat (limited to 'gnu/packages/python-build.scm')
-rw-r--r--gnu/packages/python-build.scm4
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/python-build.scm b/gnu/packages/python-build.scm
index 31b21bb57c4..97251de89ab 100644
--- a/gnu/packages/python-build.scm
+++ b/gnu/packages/python-build.scm
@@ -1187,7 +1187,7 @@ specified by PEP 517, @code{flit_core.buildapi}.")
1187 (package/inherit python-flit-core-bootstrap 1187 (package/inherit python-flit-core-bootstrap
1188 (name "python-flit-core") 1188 (name "python-flit-core")
1189 (propagated-inputs 1189 (propagated-inputs
1190 (modify-inputs (package-propagated-inputs python-flit-core-bootstrap) 1190 (modify-inputs propagated-inputs
1191 (delete "python-toml") 1191 (delete "python-toml")
1192 (prepend python-tomli))))) 1192 (prepend python-tomli)))))
1193 1193
@@ -1402,7 +1402,7 @@ has features such as:
1402 (package/inherit python-hatchling 1402 (package/inherit python-hatchling
1403 (name "python-hatchling-bootstrap") 1403 (name "python-hatchling-bootstrap")
1404 (propagated-inputs 1404 (propagated-inputs
1405 (modify-inputs (package-propagated-inputs python-hatchling) 1405 (modify-inputs propagated-inputs
1406 (replace "python-packaging" python-packaging-bootstrap))))) 1406 (replace "python-packaging" python-packaging-bootstrap)))))
1407 1407
1408(define-public python-hatchling-for-hatch 1408(define-public python-hatchling-for-hatch