# Maintainer: Luis Martinez # Contributor: Caltlgin Stsodaat pkgname=python-pytest-md-report _pkg="${pkgname#python-}" pkgver=0.3.0 pkgrel=1 pkgdesc='Pytest plugin to create a report in Markdown table format' arch=('any') url='https://github.com/thombashi/pytest-md-report' license=('MIT') depends=('python-pytablewriter' 'python-pytest' 'python-tcolorpy' 'python-typepy') makedepends=('python-setuptools' 'python-build' 'python-installer' 'python-wheel') checkdepends=('python-pytest' 'python-dateutil' 'python-pytz') source=("$pkgname-$pkgver.tar.gz::https://files.pythonhosted.org/packages/source/${_pkg::1}/$_pkg/$_pkg-$pkgver.tar.gz" "$pkgname-$pkgver.tar.gz.asc::https://files.pythonhosted.org/packages/source/${_pkg::1}/$_pkg/$_pkg-$pkgver.tar.gz.asc") sha256sums=('adaf3c5971bafb11d28ce732ead7588efa4aa4d96fbba96afac65c90b69d0255' 'SKIP') validpgpkeys=('BCF9203E5E80B5607EAE6FDD98CDA9A5F0BFC367') build() { cd "$_pkg-$pkgver" python -m build --wheel --no-isolation } check() { cd "$_pkg-$pkgver" PYTHONPATH="$PWD" pytest -x tests } package() { cd "$_pkg-$pkgver" PYTHONHASHSEED=0 python -m installer --destdir="$pkgdir/" dist/*.whl install -Dm644 README.rst -t "$pkgdir/usr/share/doc/$pkgname" local _site="$(python -c 'import site; print(site.getsitepackages()[0])')" install -d "$pkgdir/usr/share/licenses/$pkgname/" ln -s "$_site/${_pkg//-/_}-$pkgver.dist-info/LICENSE" "$pkgdir/usr/share/licenses/$pkgname/" } # vim: ts=2 sw=2 et: