2024-04-20 19:06:31 +00:00

46 lines
1.1 KiB
Plaintext

# Contributor: Antoine Martin (ayakael) <dev@ayakael.net>
# Maintainer: Antoine Martin (ayakael) <dev@ayakael.net>
pkgname=py3-pathable
#_pkgreal is used by apkbuild-pypi to find modules at PyPI
_pkgreal=pathable
pkgver=0.4.3
pkgrel=0
pkgdesc="Object-oriented JSONSchema"
url="https://github.com/p1c2u/pathable"
arch="noarch"
license="Apache-2.0"
checkdepends="
py3-pytest
py3-pytest-cov
"
makedepends="
poetry
py3-setuptools
py3-gpep517
py3-wheel
"
subpackages="$pkgname-pyc"
source="$pkgname-$pkgver.tar.gz::https://github.com/p1c2u/pathable/archive/refs/tags/$pkgver.tar.gz"
builddir="$srcdir/$_pkgreal-$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 "$builddir"/.dist/*.whl
.testenv/bin/python3 -m pytest -v
}
package() {
python3 -m installer -d "$pkgdir" \
.dist/*.whl
}
sha512sums="
5481ba1e6f4ab4318b9a7bd1d1ddd152f715b001bc7edd1b1221501da1a95578ee6601ce4ce0bdb98773c7954212687d249418e69acef1b350fc5d6cb188dbfc py3-pathable-0.4.3.tar.gz
"