blob: 7e559e8c60f3a067ec116ae59c4a987e857fafa8 (
plain)
1 # Description: dnspython is a DNS toolkit for Python
2 # URL: https://www.dnspython.org/
3 # Maintainer: Tim Biermann, tbier at posteo dot de
4 # Depends on: python3-build python3-installer python3-poetry
5
6 name=python3-dnspython
7 version=2.2.1
8 release=1
9 source=(https://pypi.python.org/packages/source/d/dnspython/dnspython-$version.tar.gz)
10
11 build() {
12 cd dnspython-$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 }
|