blob: 68504f74e79c084decfc9c9c1bb8243cea9533ee (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
# Maintainer: Luis Aranguren <pizzaman@hotmail.com>
# Contributor: yate <mwyeatts at gmail dot com>
# Contributor: Xaiuweb <xaiuweb@protonmail.ch>
# Contributor: Andy Weidenbaum <archbaum@gmail.com>
pkgname=python-trezor
_pkgname=${pkgname#python-}
pkgver=0.13.9
pkgrel=1
pkgdesc='Python 3 library for communicating with the TREZOR Bitcoin hardware wallet'
arch=('any')
makedepends=('python-setuptools')
depends=('protobuf'
'python'
'python-ecdsa'
'python-mnemonic'
'python-requests'
'python-click'
'python-libusb1'
'python-construct'
'python-typing_extensions'
'python-simple-rlp'
'python-construct-classes'
'python-protobuf'
'python-attrs')
optdepends=('python-hidapi: Firmware-less Trezor One setup')
url='https://github.com/trezor/trezor-firmware/tree/master/python'
license=('LGPL3')
options=(!emptydirs)
source=("https://files.pythonhosted.org/packages/source/${_pkgname::1}/$_pkgname/$_pkgname-$pkgver.tar.gz")
sha256sums=('9450bd7bb9d23e5e33a3c9e58e18f058b44c9d9c34ca664b4981a795aa9fb1ef')
provides=('python-trezor' 'trezorctl')
conflicts=('trezorctl')
build() {
cd "${pkgname#python-}-$pkgver"
python setup.py build
}
package() {
cd "${pkgname#python-}-$pkgver"
python setup.py install --root="$pkgdir" --optimize=1
}
|