me
/
guix
Archived
1
0
Fork 0

gnu: python-distlib: Don't reference the implicit bash input.

* gnu/packages/python-xyz.scm (python-distlib)[inputs]: Add BASH-MINIMAL.
[arguments]: Use SEARCH-INPUT-FILE instead of WHICH.
Marius Bakke 2023-09-10 15:34:49 +08:00
parent c08b919b67
commit a0aff95db9
No known key found for this signature in database
GPG Key ID: A2A06DF2A33A54FA
1 changed files with 6 additions and 3 deletions

View File

@ -8551,9 +8551,10 @@ and therefore easier to read and write.")
#:phases
#~(modify-phases %standard-phases
(add-before 'build 'no-/bin/sh
(lambda _
(substitute* '("distlib/scripts.py" "tests/test_scripts.py")
(("/bin/sh") (which "sh")))))
(lambda* (#:key inputs #:allow-other-keys)
(let ((/bin/sh (search-input-file inputs "bin/sh")))
(substitute* '("distlib/scripts.py" "tests/test_scripts.py")
(("/bin/sh") /bin/sh)))))
(add-before 'check 'prepare-test-environment
(lambda _
(setenv "HOME" "/tmp")
@ -8561,6 +8562,8 @@ and therefore easier to read and write.")
(setenv "SKIP_ONLINE" "1"))))))
(native-inputs
(list python-pytest))
(inputs
(list bash-minimal))
(home-page "https://github.com/pypa/distlib")
(synopsis "Distribution utilities")
(description "Distlib is a library which implements low-level functions that