2023-04-01 13:17:43 +02:00
|
|
|
# Description: Poetry plugin to export the dependencies to various formats
|
|
|
|
# URL: https://python-poetry.org/
|
|
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
2023-04-02 19:35:58 +02:00
|
|
|
# Depends on: python3-poetry-core
|
2023-04-01 13:17:43 +02:00
|
|
|
|
|
|
|
name=python3-poetry-plugin-export
|
|
|
|
version=1.3.0
|
|
|
|
release=1
|
|
|
|
source=(https://github.com/python-poetry/poetry-plugin-export/archive/$version/$name-$version.tar.gz)
|
|
|
|
|
|
|
|
build() {
|
|
|
|
cd poetry-plugin-export-$version
|
|
|
|
|
2023-04-02 19:35:58 +02:00
|
|
|
/usr/bin/python3 -m build --wheel --skip-dependency-check --no-isolation
|
|
|
|
/usr/bin/python3 -m installer --compile-bytecode 0 --destdir=$PKG dist/*.whl
|
2023-04-01 13:17:43 +02:00
|
|
|
}
|