33 lines
901 B
Bash
33 lines
901 B
Bash
# Template file for 'python3-wheel'
|
|
pkgname=python3-wheel
|
|
version=0.43.0
|
|
revision=1
|
|
build_style=python3-module
|
|
hostmakedepends="python3-setuptools"
|
|
depends="python3-setuptools"
|
|
checkdepends="python3-pytest python3-devel $depends"
|
|
short_desc="Built-package format for Python (Python3)"
|
|
maintainer="Andrew J. Hesford <ajh@sideband.org>"
|
|
license="MIT"
|
|
homepage="https://github.com/pypa/wheel"
|
|
distfiles="${PYPI_SITE}/w/wheel/wheel-${version}.tar.gz"
|
|
checksum=465ef92c69fa5c5da2d1cf8ac40559a8c940886afcef87dcf14b9470862f1d85
|
|
conflicts="python-wheel>=0"
|
|
|
|
do_check() {
|
|
# Must export PYTHONPATH so subprocesses see the variable
|
|
local _pypath="${PYTHONPATH}"
|
|
export PYTHONPATH="${PWD}/src:${PYTHONPATH}"
|
|
python3 -m pytest --ignore=tests/test_macosx_libfile.py
|
|
|
|
if [ -n "${_pypath}" ]; then
|
|
export PYTHONPATH="${_pypath}"
|
|
else
|
|
unset PYTHONPATH
|
|
fi
|
|
}
|
|
|
|
post_install() {
|
|
vlicense LICENSE.txt LICENSE
|
|
}
|