1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-23 03:05:48 +03:00
aports/community/py3-pytest-forked/APKBUILD

45 lines
1.2 KiB
Text

# Contributor: Dmitry Romanenko <dmitry@romanenko.in>
# Maintainer: Dmitry Romanenko <dmitry@romanenko.in>
pkgname=py3-pytest-forked
_pyname=pytest-forked
pkgver=1.6.0
pkgrel=0
pkgdesc="extracted --boxed from pytest-xdist to ensure backward compat"
url="https://github.com/pytest-dev/pytest-forked"
arch="noarch"
license="MIT"
depends="py3-pytest"
makedepends="py3-setuptools py3-pbr"
checkdepends="py3-pytest"
source="https://files.pythonhosted.org/packages/source/p/$_pyname/$_pyname-$pkgver.tar.gz"
builddir="$srcdir"/$_pyname-$pkgver
options="!check" # fail with py3.11
replaces="pytest-forked" # Backwards compatibility
provides="pytest-forked=$pkgver-r$pkgrel" # Backwards compatibility
prepare() {
default_prepare
sed -e "s/use_scm_version=True/version='$pkgver'/" \
-e '/setuptools_scm/d' \
-i setup.py
}
build() {
python3 setup.py build
}
check() {
python3 -m venv --clear test-env --system-site-packages
test-env/bin/python3 setup.py install
test-env/bin/python3 -m pytest -v -x --tb=long
}
package() {
python3 setup.py install --skip-build --root="$pkgdir"
}
sha512sums="
28fedc56fd696a4e7cf528034056849eff14094d5e7f0e94c7c477a7e91e42c08988769cf6f40d25fe8823399e552253cde2198121dd6a9e475fb6a8ce358cad pytest-forked-1.6.0.tar.gz
"