16 lines
501 B
Plaintext
16 lines
501 B
Plaintext
# Description: A low-level library for calling build-backends in pyproject.toml-based project
|
|
# URL: https://github.com/pypa/pyproject-hooks
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
|
# Depends on: python3-tomli
|
|
|
|
name=python3-pyproject-hooks
|
|
version=1.1.0
|
|
release=1
|
|
source=(https://files.pythonhosted.org/packages/source/p/pyproject_hooks/pyproject_hooks-$version.tar.gz)
|
|
|
|
build() {
|
|
cd pyproject_hooks-$version
|
|
|
|
/usr/bin/pip3 install --isolate --root=$PKG --ignore-installed --no-deps .
|
|
}
|