diff options
| author | Marius Bakke <marius@gnu.org> | 2022-02-03 21:27:09 +0100 | 
|---|---|---|
| committer | Marius Bakke <marius@gnu.org> | 2022-02-03 23:39:47 +0100 | 
| commit | df0ad9560f5a42f2851501657a4c032fa125b88c (patch) | |
| tree | 82ef91407b74f9d45ac8065ac7a8fae17e7308fb | |
| parent | 9396fef40998ba6b580b2d6c5c7b774b7a6ccd1e (diff) | |
gnu: python-translate-toolkit: Disable sanity check.
* gnu/packages/python-xyz.scm (python-translate-toolkit)[arguments]: Add
 #:phases.
| -rw-r--r-- | gnu/packages/python-xyz.scm | 7 | 
1 files changed, 6 insertions, 1 deletions
| diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index a1fb9856d3..46419e8ace 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -19251,7 +19251,12 @@ multitouch applications.")       ;; TypeError: parse() missing 2 required positional arguments: 'tree' and       ;; 'parse_funcs'       ;; during test setup. -     `(#:tests? #f)) +     (list #:tests? #f +           #:phases +           #~(modify-phases %standard-phases +               ;; translate-toolkit has many optional dependencies (see +               ;; optional.txt), which the sanity check does not understand. +               (delete 'sanity-check))))      (home-page "https://toolkit.translatehouse.org")      (synopsis "Tools and API for translation and localization engineering")      (description | 
