aports/community/py3-json-logger/APKBUILD
2023-04-19 14:25:59 +00:00

39 lines
1.0 KiB
Plaintext

# Contributor: Justin Berthault <justin.berthault@zaclys.net>
# Maintainer: Justin Berthault <justin.berthault@zaclys.net>
pkgname=py3-json-logger
pkgver=2.0.7
pkgrel=1
pkgdesc="A python library adding a json log formatter"
url="https://github.com/madzak/python-json-logger"
arch="noarch"
license="BSD-2-Clause"
makedepends="
py3-gpep517
py3-setuptools
py3-wheel
"
subpackages="$pkgname-pyc"
source="$pkgname-v$pkgver.tar.gz::https://github.com/madzak/python-json-logger/archive/v$pkgver.tar.gz"
builddir="$srcdir/"python-json-logger-$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 unittest discover tests
}
package() {
python3 -m installer -d "$pkgdir" \
dist/*.whl
}
sha512sums="
b6bdeec2a01257255cd79a7315d01125b2d40fca9fd2cfd2a8beed68ab58aaf1a85e0946c56979904b81341bdaf95f6c879b5661cdd7a17f120a04fa0c0db489 py3-json-logger-v2.0.7.tar.gz
"