17 lines
497 B
Plaintext
17 lines
497 B
Plaintext
# Description: dnspython is a DNS toolkit for Python
|
|
# URL: https://www.dnspython.org/
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
|
# Depends on: python3-hatchling
|
|
|
|
name=python3-dnspython
|
|
version=2.6.1
|
|
release=1
|
|
source=(https://pypi.python.org/packages/source/d/dnspython/dnspython-$version.tar.gz)
|
|
|
|
build() {
|
|
cd dnspython-$version
|
|
|
|
/usr/bin/python3 -m build --wheel --skip-dependency-check --no-isolation
|
|
/usr/bin/python3 -m installer --compile-bytecode 2 --destdir=$PKG dist/*.whl
|
|
}
|