17 lines
483 B
Plaintext
17 lines
483 B
Plaintext
# Description: Poetry PEP 517 Build Backend & Core Utilities
|
|
# URL: https://github.com/python-poetry/poetry-core
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
|
# Depends on: python3-pip
|
|
|
|
name=python3-poetry-core
|
|
version=1.8.1
|
|
release=1
|
|
source=(https://github.com/python-poetry/poetry-core/archive/$version/$name-$version.tar.gz)
|
|
|
|
build() {
|
|
cd poetry-core-$version
|
|
|
|
PIP_CONFIG_FILE=/dev/null /usr/bin/pip3 install --isolated --root=$PKG \
|
|
--ignore-installed --no-deps .
|
|
}
|