aboutsummaryrefslogtreecommitdiffstats
path: root/community/py3-click-plugins/APKBUILD
blob: b517b658f5256f46f8c88c2f6e1e6a4cf5b3a4c8 (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
# Contributor: Holger Jaekel <holger.jaekel@gmx.de>
# Maintainer: Holger Jaekel <holger.jaekel@gmx.de>
_pkgname=click-plugins
pkgname=py3-$_pkgname
pkgver=1.1.1
pkgrel=2
pkgdesc="An extension module for click to enable registering CLI commands via setuptools entry-points"
url="https://pypi.org/project/click-plugins/"
arch="noarch"
license="BSD-3-Clause"
depends="
	python3
	py3-click
	"
makedepends="
	py3-setuptools
	"
checkdepends="
	pytest
	"
source="
	py3-click-plugins-$pkgver.tar.gz::https://github.com/click-contrib/click-plugins/archive/$pkgver.tar.gz
	"
builddir="$srcdir/click-plugins-$pkgver"

build() {
	python3 setup.py build
}

check() {
	pytest-3
}

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

sha512sums="a1735f493aad45b328e3156b239376be89ae8bc9d1cd349355496352157672b6642429e0fe7e364c0e971c5f347263cfb6481f413185ad869173c2777679a37e  py3-click-plugins-1.1.1.tar.gz"