2023-04-02 19:44:20 +02:00
|
|
|
# Description: Poetry PEP 517 Build Backend & Core Utilities
|
|
|
|
# URL: https://github.com/python-poetry/poetry-core
|
|
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
2023-04-08 16:38:50 +02:00
|
|
|
# Depends on: python3-pip
|
2023-04-02 19:44:20 +02:00
|
|
|
|
|
|
|
name=python3-poetry-core
|
2024-02-02 17:24:22 +01:00
|
|
|
version=1.9.0
|
2023-04-02 19:44:20 +02:00
|
|
|
release=1
|
|
|
|
source=(https://github.com/python-poetry/poetry-core/archive/$version/$name-$version.tar.gz)
|
|
|
|
|
|
|
|
build() {
|
|
|
|
cd poetry-core-$version
|
|
|
|
|
2023-04-08 16:38:50 +02:00
|
|
|
PIP_CONFIG_FILE=/dev/null /usr/bin/pip3 install --isolated --root=$PKG \
|
|
|
|
--ignore-installed --no-deps .
|
2023-04-02 19:44:20 +02:00
|
|
|
}
|