40 lines
1.5 KiB
Bash

# POWER Maintainer: Alexander Baldeck <alex.bldck@gmail.com>
# Maintainer: Felix Yan <felixonmars@archlinux.org>
pkgname=python-validate-pyproject
pkgver=0.19
pkgrel=1
pkgdesc="Validation library and CLI tool for checking on 'pyproject.toml' files using JSON Schema"
url="https://github.com/abravalheri/validate-pyproject"
license=('MPL')
arch=(any)
depends=('python-fastjsonschema' 'python-packaging' 'python-trove-classifiers')
makedepends=('git' 'python-build' 'python-installer' 'python-wheel' 'python-setuptools-scm')
checkdepends=('python-pytest')
source=("git+https://github.com/abravalheri/validate-pyproject.git#tag=v$pkgver")
sha512sums=('d449666300357445d1acddba5e3f583dae65a3ff8a569906191a07cfee4ea0799ba3c6351aaad3095ea916cbf39ebc3e65e3acc2b88d6614b79db7a89cb268be')
prepare() {
cd validate-pyproject
}
build() {
cd validate-pyproject
python -m build -wn
}
check() {
local site_packages=$(python -c "import site; print(site.getsitepackages()[0])")
cd validate-pyproject
python -m installer --destdir=tmp_install dist/*.whl
PYTHONPATH="$PWD/tmp_install/$site_packages:$PYTHONPATH" pytest -o addopts='' --doctest-modules --ignore src/validate_pyproject/_vendor src
# Deselected tests requiring a installed validate-pyproject
PYTHONPATH="$PWD/tmp_install/$site_packages:$PYTHONPATH" pytest -o addopts='' --deselect tests/test_pre_compile.py --deselect tests/test_vendoring.py
}
package() {
cd validate-pyproject
python -m installer --destdir="$pkgdir" dist/*.whl
}