diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2021-01-24 00:36:04 -0500 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2021-02-01 11:53:54 -0500 |
commit | 247667e2343b03259454659833122ff71f184096 (patch) | |
tree | d59d2bceb5928f92f5cc4ef08e7136b08e8fbb07 /gnu | |
parent | 4e152febd37eae343d35a624d5fe165d0aded2e5 (diff) |
gnu: python-click: Do not set PYTHONPATH.
* gnu/packages/python-xyz.scm (python-click)
[phases]{check}: Do not set PYTHONPATH.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/python-xyz.scm | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index f142b3cac1..8ccafe88dc 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -2653,11 +2653,9 @@ interfaces.") "cross-libc" "libc")))) (substitute* "src/click/_unicodefun.py" (("'locale'") - (string-append "'" glibc "/bin/locale'")))) - #t)) + (string-append "'" glibc "/bin/locale'")))))) (replace 'check (lambda _ - (setenv "PYTHONPATH" (string-append "./src:" (getenv "PYTHONPATH"))) (invoke "python" "-m" "pytest")))))) (native-inputs `(("python-pytest" ,python-pytest))) |