From 1ae20f03f43a2af2bcde3751a2809fe152298d34 Mon Sep 17 00:00:00 2001 From: Ludovic Courtès Date: Wed, 11 Mar 2026 23:12:16 +0100 Subject: gnu: Reference the inherited inputs values. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- gnu/packages/python-web.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'gnu/packages/python-web.scm') diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index 0f1b8fb0fad..9f25c9540e0 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -6644,7 +6644,7 @@ WebSocket usage in Python programs.") (sha256 (base32 "0p0cz2mdissq7iw1n7jrmsfir0jfmgs1dvnpnrx477ffx9hbsxnk")))) (native-inputs - (modify-inputs (package-native-inputs python-websocket-client) + (modify-inputs native-inputs (append python-six))))) (define-public python-purl @@ -10145,7 +10145,7 @@ Plus all the standard features of requests: (list python-hatchling python-hatch-fancy-pypi-readme)) (propagated-inputs - (modify-inputs (package-propagated-inputs python-httpx) + (modify-inputs propagated-inputs (replace "python-httpcore" python-httpcore-bootstrap)))))) (define-public python-httpx-sse @@ -13573,7 +13573,7 @@ return paginated responses to your clients.") `(modify-phases ,phases (delete 'sanity-check))))) (propagated-inputs - (modify-inputs (package-propagated-inputs python-tortoise-orm) + (modify-inputs propagated-inputs (replace "python-aiosqlite" python-aiosqlite))))))) (native-inputs (list python-aiosqlite -- cgit v1.3