18 lines
599 B
Plaintext
18 lines
599 B
Plaintext
# Description: python module for creating large XML files
|
|
# URL: https://foss.heptapod.net/openpyxl/et_xmlfile
|
|
# Maintainer: John McQuah, jmcquah at disroot dot org
|
|
# Depends on: python3-lxml python3-tox
|
|
|
|
name=python3-et_xmlfile
|
|
version=2.0.0
|
|
release=2
|
|
source=(https://files.pythonhosted.org/source/e/et_xmlfile-$version.tar.gz)
|
|
|
|
build() {
|
|
cd et_xmlfile-$version
|
|
/usr/bin/python3 -m build --wheel --skip-dependency-check --no-isolation
|
|
|
|
/usr/bin/python3 -m installer --destdir="$PKG" dist/*.whl
|
|
rm -rf "$PKG"/usr/lib/python3.12/site-packages/et_xmlfile-$version.dist-info/licenses
|
|
}
|