17 lines
523 B
Plaintext
17 lines
523 B
Plaintext
# Description: brain-dead simple config-ini parsing
|
|
# URL: https://github.com/RonnyPfannschmidt/iniconfig
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
|
# Depends on: python3-hatch-vcs
|
|
|
|
name=python3-iniconfig
|
|
version=2.0.0
|
|
release=1
|
|
source=(https://files.pythonhosted.org/packages/source/i/iniconfig/iniconfig-$version.tar.gz)
|
|
|
|
build() {
|
|
cd iniconfig-$version
|
|
|
|
/usr/bin/python3 -m build --wheel --skip-dependency-check --no-isolation
|
|
/usr/bin/python3 -m installer --compile-bytecode 2 --destdir=$PKG dist/*.whl
|
|
}
|