mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-19 17:25:17 +03:00
32 lines
857 B
Text
32 lines
857 B
Text
# Contributor: Duncan Bellamy <dunk@denkimushi.com>
|
|
# Maintainer: Duncan Bellamy <dunk@denkimushi.com>
|
|
pkgname=py3-pytest-lazy-fixture
|
|
pkgver=0.6.3
|
|
pkgrel=0
|
|
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 --prefix=/usr --root="$pkgdir"
|
|
}
|
|
|
|
sha512sums="
|
|
3281edc516f21f23104d7fc188b5c9aecf364f55109dab52865cbfef4a540727eb2bd42fb9806a7e8be728b249bc7a224ffdbab96473f043bef9a7aea1e4baa8 pytest-lazy-fixture-0.6.3.tar.gz
|
|
"
|