1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-23 19:25:25 +03:00
aports/testing/py3-cli_helpers/APKBUILD
2021-04-05 18:19:08 +00:00

32 lines
1 KiB
Text

# Contributor: Thomas Boerger <thomas@webhippie.de>
# Maintainer: Thomas Boerger <thomas@webhippie.de>
pkgname=py3-cli_helpers
_pkgname=cli_helpers
pkgver=1.2.1
pkgrel=2
pkgdesc="A helper library for command-line interfaces"
url="https://pypi.python.org/pypi/cli-helpers"
arch="noarch"
license="BSD-3-Clause"
depends="py3-terminaltables py3-tabulate py3-configobj"
makedepends="py3-setuptools"
checkdepends="py3-pytest py3-wcwidth py3-mock"
source="$pkgname-$pkgver.tar.gz::https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz"
builddir="$srcdir/$_pkgname-$pkgver"
replaces="py-cli_helpers" # Backwards compatibility
provides="py-cli_helpers=$pkgver-r$pkgrel" # Backwards compatiblity
check() {
py.test-3
}
build() {
python3 setup.py build
}
package() {
python3 setup.py install --prefix=/usr --root="$pkgdir"
}
sha512sums="46f83382800da7e6ba9116df5cd77bf012e14af821a842e73a7f0ddae64e032dd2d00c124b0f0ed18a07226058dbc41185e99ccd7616e971116a57a22ceace51 py3-cli_helpers-1.2.1.tar.gz"