aports/testing/py3-milc/APKBUILD
2025-01-25 16:03:54 +00:00

36 lines
1 KiB
Text

# Contributor: Galen Abell <galen@galenabell.com>
# Maintainer: Galen Abell <galen@galenabell.com>
pkgname=py3-milc
pkgver=1.9.1
pkgrel=0
pkgdesc="Opinionated Batteries-Included Python 3 CLI Framework"
url="https://milc.clueboard.co"
arch="noarch"
license="MIT"
depends="python3 py3-argcomplete py3-colorama py3-halo py3-platformdirs"
makedepends="py3-gpep517 py3-setuptools py3-wheel"
checkdepends="py3-pytest py3-semver"
subpackages="$pkgname-pyc"
source="$pkgname-$pkgver.tar.gz::https://github.com/clueboard/milc/archive/$pkgver.tar.gz"
builddir="$srcdir/milc-$pkgver"
build() {
gpep517 build-wheel \
--wheel-dir .dist \
--output-fd 3 3>&1 >&2
}
check() {
python3 -m venv --clear --without-pip --system-site-packages .testenv
.testenv/bin/python3 -m installer .dist/*.whl
.testenv/bin/python3 -m pytest
}
package() {
python3 -m installer -d "$pkgdir" \
.dist/*.whl
}
sha512sums="
c15b68778b7231131c56d04d501a5a788783b910b697059a77eb9c3ea071a659cc4e8da58830b4e9d329a4cd175f73c4ed185e358f26219f29c8a8f40e4cc4a3 py3-milc-1.9.1.tar.gz
"