24 lines
750 B
Plaintext
24 lines
750 B
Plaintext
pkgname=pyproject-hooks
|
|
pkgver=1.2.0
|
|
pkgdesc="A low-level library for calling build-backends in pyproject.toml-based project"
|
|
arch=(any)
|
|
homepage="https://github.com/pypa/pyproject-hooks"
|
|
license=(MIT)
|
|
sources=("${pkgname/-/_}-${pkgver}.tar.gz")
|
|
urls=("https://files.pythonhosted.org/packages/source/p/${pkgname}/${sources[0]}")
|
|
md5sums=("ed3dd1b984339e83e35f676d7169c192")
|
|
|
|
export PYTHONDONTWRITEBYTECODE=1
|
|
|
|
src_prepare() {
|
|
tar -xf ${distdir}/${sources[0]} --strip-components=1
|
|
}
|
|
|
|
src_build() {
|
|
pip3 wheel -w dist --no-cache-dir --no-build-isolation --no-deps $PWD
|
|
}
|
|
|
|
src_install() {
|
|
pip3 install --no-deps --no-warn-script-location --no-index --no-cache-dir --no-user --root ${pkgdir} --root-user-action=ignore --find-links dist ${pkgname}
|
|
}
|