aboutsummaryrefslogtreecommitdiffstats
path: root/community/thonny/APKBUILD
blob: dd2f75f404232c1f6243d5f501ea2b1bc77b77f2 (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
# Contributor: Justin Berthault <justin.berthault@zaclys.net>
# Maintainer: Justin Berthault <justin.berthault@zaclys.net>
pkgname=thonny
pkgver=3.3.7
pkgrel=0
pkgdesc="Python IDE for beginners"
url="https://thonny.org"
arch="noarch"
license="MIT"
depends="
	openssl
	py3-astroid
	py3-asttokens
	py3-docutils
	py3-jedi
	py3-mypy
	py3-pylint
	py3-pyperclip
	py3-pyserial
	py3-send2trash
	py3-toml
	python3-tkinter
	"
makedepends="py3-setuptools"
source="https://files.pythonhosted.org/packages/source/t/thonny/thonny-$pkgver.tar.gz"
options="!check" # Tests need a DISPLAY

build() {
	python3 setup.py build
}

check() {
	python3 setup.py test
}

package() {
	python3 setup.py install --root="$pkgdir"
}

sha512sums="
b611d7e177420313c5f17a312989a6db5d2dce4281dbcf4e12b0785bdea5c1c5477563b4fa339c9ba2181c95a19e5ffb469c131bb9c2da4a7c6d8909579152ab  thonny-3.3.7.tar.gz
"