35 lines
975 B
Bash

# POWER Maintainer: Alexander Baldeck <alex.bldck@gmail.com>
# Maintainer: Felix Yan <felixonmars@archlinux.org>
pkgname=python-pytest-mypy
pkgver=0.10.3
_commit=62c03db621543896ff6166dddd9e9e4f7c78ad7a
pkgrel=6
pkgdesc='Mypy static type checker plugin for Pytest'
arch=(any)
license=('MIT')
url='https://github.com/dbader/pytest-mypy'
depends=('python-attrs' 'python-filelock' 'python-pytest' 'mypy')
makedepends=('git' 'python-setuptools-scm' 'python-setuptools' 'python-build' 'python-installer' 'python-wheel')
checkdepends=('python-pytest-xdist' 'python-pexpect')
source=("git+https://github.com/dbader/pytest-mypy.git#commit=$_commit")
sha512sums=('SKIP')
build() {
cd pytest-mypy
python -m build --wheel --no-isolation
}
check() {
cd pytest-mypy
PYTHONPATH="$PWD"/src pytest -v
}
package() {
cd pytest-mypy
python -m installer --destdir="$pkgdir" dist/*.whl
install -Dm644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
}
# vim:set ts=2 sw=2 et: