gnu: python-trezor: Update to 0.13.7.
* gnu/packages/finance.scm (python-trezor): Update to 0.13.7. [propagated-inputs]: Drop python-click-7 kludge, add python-construct-classes instead of python-construct. [native-inputs]: Add python-pillow, python-simple-rlp and python-wheel. Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
This commit is contained in:
parent
8036852533
commit
ed363d6ddb
1 changed files with 9 additions and 10 deletions
|
@ -1094,7 +1094,7 @@ Nano dongle.")
|
||||||
(define-public python-trezor
|
(define-public python-trezor
|
||||||
(package
|
(package
|
||||||
(name "python-trezor")
|
(name "python-trezor")
|
||||||
(version "0.13.0")
|
(version "0.13.7")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
|
@ -1103,7 +1103,7 @@ Nano dongle.")
|
||||||
(commit (string-append "python/v" version))))
|
(commit (string-append "python/v" version))))
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "1wy584bxx5p2av4lv1bx9hl1q0b5n7hqz0hnqb9shjriarvl5ckd"))
|
(base32 "13wyl9b15c8iscfakprwfvh2akw180hfqdjww79b78ywz51y7hdh"))
|
||||||
(modules
|
(modules
|
||||||
'((guix build utils)
|
'((guix build utils)
|
||||||
(srfi srfi-26)
|
(srfi srfi-26)
|
||||||
|
@ -1129,25 +1129,24 @@ Nano dongle.")
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
(list python-attrs
|
(list python-attrs
|
||||||
;; TOOD: Use the latest click version after release 0.13.1 or later
|
python-click
|
||||||
;; is made (see:
|
python-construct-classes
|
||||||
;; https://github.com/trezor/trezor-firmware/issues/2199).
|
|
||||||
python-click-7
|
|
||||||
python-construct
|
|
||||||
python-ecdsa
|
python-ecdsa
|
||||||
python-hidapi
|
python-hidapi
|
||||||
python-libusb1
|
python-libusb1
|
||||||
python-mnemonic
|
python-mnemonic
|
||||||
python-requests
|
python-requests
|
||||||
python-typing-extensions))
|
python-typing-extensions))
|
||||||
(native-inputs
|
(native-inputs ; Only needed for running the tests
|
||||||
;; For tests.
|
|
||||||
(list protobuf
|
(list protobuf
|
||||||
python-black
|
python-black
|
||||||
python-isort
|
python-isort
|
||||||
|
python-pillow
|
||||||
python-protobuf
|
python-protobuf
|
||||||
python-pyqt
|
python-pyqt
|
||||||
python-pytest))
|
python-pytest
|
||||||
|
python-simple-rlp
|
||||||
|
python-wheel))
|
||||||
(home-page "https://github.com/trezor/python-trezor")
|
(home-page "https://github.com/trezor/python-trezor")
|
||||||
(synopsis "Python library for communicating with TREZOR Hardware Wallet")
|
(synopsis "Python library for communicating with TREZOR Hardware Wallet")
|
||||||
(description "@code{trezor} is a Python library for communicating with
|
(description "@code{trezor} is a Python library for communicating with
|
||||||
|
|
Reference in a new issue