diff options
| author | jgart <jgart@dismail.de> | 2025-03-23 22:02:13 -0500 |
|---|---|---|
| committer | jgart <jgart@dismail.de> | 2025-03-23 22:20:48 -0500 |
| commit | cd3a45a5eca855f43ee3520d07f4ab560daa98c6 (patch) | |
| tree | bad8fe8ca112533ed904effc0f76d51f2a8149f1 /gnu/packages/python-check.scm | |
| parent | 9e8f4ba600d113d21f78ad05bbe466843131640a (diff) | |
gnu: python-pytest-helpers-namespace: Use modern style.
* gnu/packages/python-check.scm (python-pytest-helpers-namespace)[arguments]:
Use modern style.
Change-Id: I97d10134022e4073449b25dae13716f6a65c7c14
Diffstat (limited to 'gnu/packages/python-check.scm')
| -rw-r--r-- | gnu/packages/python-check.scm | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/gnu/packages/python-check.scm b/gnu/packages/python-check.scm index ccacdc86fb1..47180442407 100644 --- a/gnu/packages/python-check.scm +++ b/gnu/packages/python-check.scm @@ -1201,13 +1201,14 @@ sub-package.") "0pyj2d45zagmzlajzqdnkw5yz8k49pkihbydsqkzm413qnkzb38q")))) (build-system python-build-system) (arguments - '(#:phases - (modify-phases %standard-phases - (replace 'check - (lambda* (#:key inputs outputs #:allow-other-keys) - ;; Make the installed plugin discoverable by Pytest. - (add-installed-pythonpath inputs outputs) - (invoke "pytest" "-vv")))))) + (list + #:phases + #~(modify-phases %standard-phases + (replace 'check + (lambda* (#:key inputs outputs #:allow-other-keys) + ;; Make the installed plugin discoverable by Pytest. + (add-installed-pythonpath inputs outputs) + (invoke "pytest" "-vv")))))) (native-inputs (list python-pytest python-setuptools ; needs setuptools >= 50.3.2 python-setuptools-scm python-setuptools-declarative-requirements)) |
