mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-27 23:02:16 -05:00
gnu: trezor-agent: Update to 0.14.4.
* gnu/packages/finance.scm (trezor-agent): Update to 0.14.4. [phases]{relax-requirements}: New phase.
This commit is contained in:
parent
036a464258
commit
da0839c77d
1 changed files with 6 additions and 1 deletions
|
@ -1110,7 +1110,7 @@ (define-public ledger-agent
|
||||||
(define-public trezor-agent
|
(define-public trezor-agent
|
||||||
(package
|
(package
|
||||||
(name "trezor-agent")
|
(name "trezor-agent")
|
||||||
(version "0.11.0-1")
|
(version "0.14.4")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
|
@ -1150,6 +1150,11 @@ (define-public trezor-agent
|
||||||
;; This package only has a Python script, not a Python module, so the
|
;; This package only has a Python script, not a Python module, so the
|
||||||
;; sanity-check phase can't work.
|
;; sanity-check phase can't work.
|
||||||
(delete 'sanity-check)
|
(delete 'sanity-check)
|
||||||
|
(add-after 'unpack 'relax-requirements
|
||||||
|
(lambda _
|
||||||
|
(substitute* "setup.py"
|
||||||
|
(("'trezor\\[hidapi]>=0.12.0,<0.13'")
|
||||||
|
"'trezor[hidapi]>=0.13'"))))
|
||||||
(add-after 'wrap 'fixup-agent-py
|
(add-after 'wrap 'fixup-agent-py
|
||||||
(lambda* (#:key inputs outputs #:allow-other-keys)
|
(lambda* (#:key inputs outputs #:allow-other-keys)
|
||||||
(let* ((out (assoc-ref outputs "out")))
|
(let* ((out (assoc-ref outputs "out")))
|
||||||
|
|
Loading…
Reference in a new issue