aboutsummaryrefslogtreecommitdiffstats
path: root/testing/py3-transitions/APKBUILD
blob: 9a55801180e0dacfd1ab073c72800ce22aa45c9b (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
# Contributor: Fabian Affolter <fabian@affolter-engineering.ch>
# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch>
pkgname=py3-transitions
_pyname=transitions
pkgver=0.8.2
pkgrel=1
pkgdesc="A lightweight, object-oriented Python state machine implementation"
url="https://github.com/tyarkoni/transitions"
arch="noarch"
license="MIT"
depends="py3-six"
makedepends="py3-setuptools"
checkdepends="py3-pytest py3-pycodestyle py3-graphviz"
source="https://files.pythonhosted.org/packages/source/${_pyname:0:1}/$_pyname/$_pyname-$pkgver.tar.gz"
builddir="$srcdir"/$_pyname-$pkgver

replaces=py-transitions # Backwards compatibility
provides=py-transitions=$pkgver-r$pkgrel # Backwards compatibility

prepare() {
	default_prepare
	rm tests/test_codestyle.py
}

build() {
	python3 setup.py build
}

check() {
	py.test-3
}

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

sha512sums="83f60d4ef2084c14c9c8c8a1e37af5bf5f5eb68732a2deeda8456da6d141984eb2abf1350fd0370ae39cb9038f365bfb501b6ecdaad84f32fdd97d9ff4454abf  transitions-0.8.2.tar.gz"