diff options
author | Attila Lendvai <attila@lendvai.name> | 2022-03-03 11:58:02 +0100 |
---|---|---|
committer | Guillaume Le Vaillant <glv@posteo.net> | 2022-04-12 13:39:12 +0200 |
commit | d3d2881acf4f3efef61a4049ea4c7c3ba883f48c (patch) | |
tree | 5c11110eee8ce7a544955520d79a0a9e531f8e05 /gnu/packages/finance.scm | |
parent | ba1ce250c8d2d0d3c215e06d722f8d561cbe095f (diff) |
gnu: trezor-agent: Fix it by deleting the sanity-check phase.
* gnu/packages/finance.scm (trezor-agent)[arguments]: Delete 'sanity-check'
phase.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
Diffstat (limited to 'gnu/packages/finance.scm')
-rw-r--r-- | gnu/packages/finance.scm | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gnu/packages/finance.scm b/gnu/packages/finance.scm index 9f2d055048..9b6e801c9c 100644 --- a/gnu/packages/finance.scm +++ b/gnu/packages/finance.scm @@ -1156,6 +1156,9 @@ the KeepKey Hardware Wallet.") (arguments `(#:phases (modify-phases %standard-phases + ;; This package only has a Python script, not a Python module, so the + ;; sanity-check phase can't work. + (delete 'sanity-check) (add-after 'wrap 'fixup-agent-py (lambda* (#:key inputs outputs #:allow-other-keys) (let* ((out (assoc-ref outputs "out"))) |