# Description: A built-package format for Python
# URL: https://pypi.python.org/pypi/wheel
# Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on: python3-build python3-installer

name=python3-wheel
version=0.46.1
release=1
source=(https://files.pythonhosted.org/packages/source/w/wheel/${name#*-}-$version.tar.gz)

build() {
  cd ${name#*-}-$version

  /usr/bin/python3 -m build --wheel --skip-dependency-check --no-isolation
  /usr/bin/python3 -m installer --compile-bytecode 2 --destdir=$PKG dist/*.whl
}
