17 lines
458 B
Plaintext
17 lines
458 B
Plaintext
# Description: Wrappers to build Python packages using PEP 517 hooks
|
|
# URL: https://github.com/pypa/pep517
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
|
# Depends on: python3-tomli
|
|
|
|
name=python3-pep517
|
|
version=0.13.0
|
|
release=1
|
|
source=(https://pypi.python.org/packages/source/p/pep517/pep517-$version.tar.gz)
|
|
|
|
build() {
|
|
cd pep517-$version
|
|
|
|
PIP_CONFIG_FILE=/dev/null /usr/bin/pip3 install --isolated --root=$PKG \
|
|
--ignore-installed --no-deps .
|
|
}
|