diff options
| author | Ludovic Courtès <ludo@gnu.org> | 2026-03-11 23:12:16 +0100 |
|---|---|---|
| committer | Ludovic Courtès <ludo@gnu.org> | 2026-03-20 13:27:16 +0100 |
| commit | 1ae20f03f43a2af2bcde3751a2809fe152298d34 (patch) | |
| tree | be11f116044ab4cbc7994e2cf88ded0e21db4bbc /gnu/packages/python-xyz.scm | |
| parent | 4ba653e637940b147ea5cdcf45397b8ac7f3d014 (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-xyz.scm')
| -rw-r--r-- | gnu/packages/python-xyz.scm | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index b1afbd051fd..5a02bad4865 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm | |||
| @@ -14531,14 +14531,14 @@ following CLI scripts: | |||
| 14531 | (arguments | 14531 | (arguments |
| 14532 | (list #:test-flags #~(list "--pyargs" "ipyparallel"))) | 14532 | (list #:test-flags #~(list "--pyargs" "ipyparallel"))) |
| 14533 | (native-inputs | 14533 | (native-inputs |
| 14534 | (modify-inputs (package-native-inputs python-ipyparallel-bootstrap) | 14534 | (modify-inputs native-inputs |
| 14535 | (append python-ipython | 14535 | (append python-ipython |
| 14536 | python-pytest | 14536 | python-pytest |
| 14537 | python-pytest-asyncio | 14537 | python-pytest-asyncio |
| 14538 | python-pytest-tornado | 14538 | python-pytest-tornado |
| 14539 | python-testpath))) | 14539 | python-testpath))) |
| 14540 | (propagated-inputs | 14540 | (propagated-inputs |
| 14541 | (modify-inputs (package-propagated-inputs python-ipyparallel-bootstrap) | 14541 | (modify-inputs propagated-inputs |
| 14542 | (replace "python-jupyter-client-bootstrap" python-jupyter-client) | 14542 | (replace "python-jupyter-client-bootstrap" python-jupyter-client) |
| 14543 | (append python-ipykernel))) | 14543 | (append python-ipykernel))) |
| 14544 | (properties (alist-delete 'hidden? (package-properties | 14544 | (properties (alist-delete 'hidden? (package-properties |
| @@ -16787,7 +16787,7 @@ from an XML-based format.") | |||
| 16787 | "MtiTest") | 16787 | "MtiTest") |
| 16788 | " and not ")))))))))) | 16788 | " and not ")))))))))) |
| 16789 | (native-inputs | 16789 | (native-inputs |
| 16790 | (modify-inputs (package-native-inputs base) | 16790 | (modify-inputs native-inputs |
| 16791 | (append python-pytest))) | 16791 | (append python-pytest))) |
| 16792 | (propagated-inputs | 16792 | (propagated-inputs |
| 16793 | (list python-brotli | 16793 | (list python-brotli |
| @@ -23681,7 +23681,7 @@ protocols written in pure Python.") | |||
| 23681 | (base32 "0n3p8jyxl4zwc63la10v8llc58fc5pcnfqdq9f1vn0hgy5jdi7z1")))) | 23681 | (base32 "0n3p8jyxl4zwc63la10v8llc58fc5pcnfqdq9f1vn0hgy5jdi7z1")))) |
| 23682 | (build-system pyproject-build-system) | 23682 | (build-system pyproject-build-system) |
| 23683 | (native-inputs | 23683 | (native-inputs |
| 23684 | (modify-inputs (package-native-inputs python-dulwich) | 23684 | (modify-inputs native-inputs |
| 23685 | (prepend python-setuptools-rust))) | 23685 | (prepend python-setuptools-rust))) |
| 23686 | (arguments | 23686 | (arguments |
| 23687 | (list | 23687 | (list |
| @@ -33080,7 +33080,7 @@ key-value pairs from a @code{.env} file and set them as environment variables.") | |||
| 33080 | (delete-file "tests/test_ipython.py") | 33080 | (delete-file "tests/test_ipython.py") |
| 33081 | (invoke "python" "-m" "pytest"))))))) | 33081 | (invoke "python" "-m" "pytest"))))))) |
| 33082 | (native-inputs | 33082 | (native-inputs |
| 33083 | (modify-inputs (package-native-inputs python-dotenv) | 33083 | (modify-inputs native-inputs |
| 33084 | (append python-mock) | 33084 | (append python-mock) |
| 33085 | (replace "python-sh" python-sh-1))))) | 33085 | (replace "python-sh" python-sh-1))))) |
| 33086 | 33086 | ||
