# Contributor: Duncan Bellamy <dunk@denkimushi.com>
# Maintainer: Duncan Bellamy <dunk@denkimushi.com>
pkgname=py3-prettytable3
pkgver=3.14.0
pkgrel=0
pkgdesc="Display tabular data in a visually appealing ASCII table format"
url="https://github.com/jazzband/prettytable"
arch="noarch"
license="BSD-3-Clause"
depends="python3 py3-wcwidth !py3-prettytable"
makedepends="py3-gpep517 py3-hatchling py3-hatch-vcs py3-installer"
checkdepends="py3-pytest py3-pytest-cov py3-pytest-lazy-fixtures"
subpackages="$pkgname-pyc"
source="$pkgname-$pkgver.tar.gz::https://github.com/jazzband/prettytable/archive/$pkgver.tar.gz"
builddir="$srcdir/prettytable-$pkgver"

build() {
	export SETUPTOOLS_SCM_PRETEND_VERSION=$pkgver
	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="
4efddcce00d9e25e75e3b2dfe42b0c950bbdbdf34930a6ec06cfd5666fa237efc5dbc59d247b590d7b9b6b1bb0cfcad2e0237adecdab4ca72b0977f3c60330b6  py3-prettytable3-3.14.0.tar.gz
"
