summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: a2eba2141bc7dd66966c4509c74565854f92bdf5 (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
# Maintainer: Zosoled

pkgname='python-speculos'
_name=${pkgname#python-}
pkgver=0.25.8
pkgrel=1
pkgdesc='Ledger hardware wallet emulator'
arch=('x86_64')
url='https://github.com/LedgerHQ/speculos'
license=('GPL-3.0')
depends=(
	'python>=3.9'
	'python-construct'
	'python-flask'
	'python-flask-cors'
	'python-flask-restful'
	'python-jsonschema'
	'python-ledgered'
	'python-mnemonic'
	'python-pillow'
	'python-pyelftools'
	'python-pygame'
	'python-pyqt6'
	'python-requests'
	'qemu-user-static'
)
makedepends=(
	'python-installer'
)
source=(
	"${url}/releases/download/v${pkgver}/${_name}-${pkgver}-py3-none-any.whl"
)
sha256sums=(
	'bdbb69158f6f81db8fe3ef8379de46bced96867ce8728ae9dd0a34a5d7648cd3'
)

package() {
	cd "${srcdir}"
	python -m installer --destdir="${pkgdir}" "${_name}-${pkgver}-py3-none-any.whl"
}