40 lines
772 B
Bash
40 lines
772 B
Bash
pkgname=pyproject-metadata
|
|
pkgver=0.10.0
|
|
pkgdesc='PEP 621 metadata parsing'
|
|
arch=(any)
|
|
homepage='https://github.com/pypa/python-pyproject-metadata'
|
|
license=(MIT)
|
|
depends=(
|
|
python
|
|
python-packaging
|
|
)
|
|
makedepends=(
|
|
python-build
|
|
python-installer
|
|
python-flit-core
|
|
)
|
|
checkdepends=(python-pytest)
|
|
sources=("${pkgname}-${pkgver}.tar.gz")
|
|
urls=("$homepage/archive/${pkgver}/${sources[0]}")
|
|
md5sums=("b1f885a760bb0de1de64c19018f34315")
|
|
|
|
src_prepare() {
|
|
tar -xf ${distdir}/${sources[0]} --strip-components=1
|
|
}
|
|
|
|
src_build() {
|
|
python -m build --wheel --no-isolation
|
|
}
|
|
|
|
src_check() {
|
|
pytest -v
|
|
}
|
|
|
|
src_install() {
|
|
python -m installer --destdir="$pkgdir" dist/*.whl
|
|
|
|
install -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
|
|
}
|
|
|
|
# vim:ft=sh syn=sh et sw=2:
|