39 lines
1.2 KiB
Bash
39 lines
1.2 KiB
Bash
# Template file for 'python3-pytest'
|
|
pkgname=python3-pytest
|
|
version=5.3.4
|
|
revision=1
|
|
archs=noarch
|
|
wrksrc="${pkgname/python3-//}-${version}"
|
|
build_style=python3-module
|
|
hostmakedepends="python3-setuptools"
|
|
depends="python3-py python3-packaging python3-attrs python3-more-itertools
|
|
python3-atomicwrites python3-pluggy python3-wcwidth"
|
|
checkdepends="$depends python3-argcomplete python3-hypothesis python3-mock
|
|
python3-nose python3-requests python3-parsing tox"
|
|
short_desc="Simple powerful testing with Python 3"
|
|
maintainer="Orphaned <orphan@voidlinux.org>"
|
|
license="MIT"
|
|
homepage="https://docs.pytest.org/en/latest/"
|
|
changelog="https://docs.pytest.org/en/latest/changelog.html"
|
|
distfiles="${PYPI_SITE}/p/pytest/pytest-${version}.tar.gz"
|
|
checksum=1d122e8be54d1a709e56f82e2d85dcba3018313d64647f38a91aec88c239b600
|
|
alternatives="
|
|
pytest:pytest:/usr/bin/pytest3
|
|
pytest:py.test:/usr/bin/py.test3"
|
|
|
|
post_patch() {
|
|
sed -i setup.py \
|
|
-e '/setup_requires=/d' \
|
|
-e "s|use_scm_version=.*|version=\"${version}\",|"
|
|
}
|
|
|
|
do_check() {
|
|
tox -e "py${py3_ver/./}"
|
|
}
|
|
|
|
post_install() {
|
|
mv ${DESTDIR}/usr/bin/pytest ${DESTDIR}/usr/bin/pytest3
|
|
mv ${DESTDIR}/usr/bin/py.test ${DESTDIR}/usr/bin/py.test3
|
|
vlicense LICENSE
|
|
}
|