aports/community/py3-subunit/APKBUILD
2023-04-28 23:45:29 +00:00

29 lines
920 B
Plaintext

# Contributor: Robert Sacks <robert@sacks.email>
# Maintainer: Robert Sacks <robert@sacks.email>
pkgname=py3-subunit
pkgver=1.4.2
pkgrel=1
pkgdesc="Python implementation of subunit test streaming protocol"
url="https://launchpad.net/subunit"
arch="noarch"
license="Apache-2.0 OR BSD-3-Clause"
options="!check" # Test suite issues
depends="python3 py3-extras py3-testtools"
makedepends="py3-setuptools"
subpackages="$pkgname-pyc"
source="https://files.pythonhosted.org/packages/source/p/python-subunit/python-subunit-$pkgver.tar.gz"
builddir="$srcdir/python-subunit-$pkgver"
build() {
python3 setup.py build
}
package() {
python3 setup.py install --skip-build --root="$pkgdir"
rm -rf "$pkgdir"/usr/lib/python3.8/site-packages/subunit/tests
}
sha512sums="
605b8f2886cf4bf253564f153aefe887b2da2a6cdc5bf41eddfd36886d0471b32efd4c014e17f6356a1bd7f7765b3327c86ad06465e78b3f97215a35d266572c python-subunit-1.4.2.tar.gz
"