blob: 46725f4fdf26e3f529013edaf417f90e1af771c9 (
plain)
1 # Description: Poetry PEP 517 Build Backend & Core Utilities
2 # URL: https://github.com/python-poetry/poetry-core
3 # Maintainer: Tim Biermann, tbier at posteo dot de
4 # Depends on: python3-installer python3-jsonschema python3-lark-parser python3-tomlkit
5
6 name=python3-poetry-core
7 version=1.4.0
8 release=1
9 source=(https://github.com/python-poetry/poetry-core/archive/$version/$name-$version.tar.gz)
10
11 build() {
12 cd poetry-core-$version
13
14 /usr/bin/python3 -m build --wheel --skip-dependency-check --no-isolation
15 /usr/bin/python3 -m installer --compile-bytecode 2 --destdir=$PKG dist/*.whl
16 }
|