1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-21 18:25:41 +03:00
aports/community/py3-pytest-lazy-fixture/APKBUILD
psykose deb62258ec */*: set --skip-build for python installs
this marginally increases install speed by not checking if it needs a rebuild.
also remove --prefix=/usr as it defaults to /usr already.

might break a build or two, will fix later
2023-01-10 04:19:31 +01:00

32 lines
856 B
Text

# Contributor: Duncan Bellamy <dunk@denkimushi.com>
# Maintainer: Duncan Bellamy <dunk@denkimushi.com>
pkgname=py3-pytest-lazy-fixture
pkgver=0.6.3
pkgrel=1
pkgdesc="help to use fixtures in pytest.mark.parametrize"
url="https://github.com/tvorog/pytest-lazy-fixture"
arch="noarch"
license="MIT"
depends="python3 py3-pytest"
makedepends="
py3-setuptools
py3-setuptools_scm
"
source="https://files.pythonhosted.org/packages/source/p/pytest-lazy-fixture/pytest-lazy-fixture-$pkgver.tar.gz"
builddir="$srcdir/pytest-lazy-fixture-$pkgver"
build() {
python3 setup.py build
}
check() {
python3 -m pytest
}
package() {
python3 setup.py install --skip-build --root="$pkgdir"
}
sha512sums="
3281edc516f21f23104d7fc188b5c9aecf364f55109dab52865cbfef4a540727eb2bd42fb9806a7e8be728b249bc7a224ffdbab96473f043bef9a7aea1e4baa8 pytest-lazy-fixture-0.6.3.tar.gz
"