diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2021-11-26 08:47:19 +0100 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2021-11-26 08:48:39 +0100 |
commit | 37aaee14a13e673d659decc418d9b3a164e6fc63 (patch) | |
tree | baf435cc506e84036badf7750dcfce57a20b8b47 /gnu/packages | |
parent | 8182a3d1a970eb5cfec4b02167b1bff356076c4d (diff) | |
download | guix-37aaee14a13e673d659decc418d9b3a164e6fc63.tar guix-37aaee14a13e673d659decc418d9b3a164e6fc63.tar.gz |
gnu: pyzo: Remove trailing #T.
* gnu/packages/python-xyz.scm (pyzo)[arguments]: Remove #T from
`fix-home-directory' phase.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/python-xyz.scm | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 1506072625..2e0135fab1 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -25564,8 +25564,7 @@ dictionaries.") (add-before 'check 'fix-home-directory (lambda _ ;; Tests fail with "Permission denied: '/homeless-shelter'". - (setenv "HOME" "/tmp") - #t))) + (setenv "HOME" "/tmp")))) ;; Tests fail with "Uncaught Python exception: python: undefined ;; symbol: objc_getClass". #:tests? #f)) |