mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-09-21 21:51:34 +02:00
32 lines
877 B
Plaintext
32 lines
877 B
Plaintext
# Contributor: Keith Maxwell <keith.maxwell@gmail.com>
|
|
# Maintainer: Keith Maxwell <keith.maxwell@gmail.com>
|
|
pkgname=py3-pytest-localserver
|
|
_pyname=pytest-localserver
|
|
pkgver=0.5.1
|
|
pkgrel=0
|
|
pkgdesc="a pytest plugin to test server connections locally"
|
|
url="https://github.com/pytest-dev/pytest-localserver"
|
|
arch="noarch"
|
|
license="MIT"
|
|
depends="python3"
|
|
makedepends="py3-setuptools"
|
|
checkdepends="py3-pytest py3-six py3-requests py3-werkzeug"
|
|
source="https://files.pythonhosted.org/packages/source/p/$_pyname/$_pyname-$pkgver.tar.gz"
|
|
builddir="$srcdir/$_pyname-$pkgver"
|
|
|
|
build() {
|
|
python3 setup.py build
|
|
}
|
|
|
|
package() {
|
|
python3 setup.py install --prefix=/usr --root="$pkgdir"
|
|
}
|
|
|
|
check() {
|
|
pytest-3
|
|
}
|
|
|
|
sha512sums="
|
|
dad8b21020cf2f08ad03398b82bad7b47e553a9c6b489b94186bdc61c22f57e7151f8dbeab38ef42d03658104ec42920ec363288a1bdbea34dab6aee1da03c48 pytest-localserver-0.5.1.tar.gz
|
|
"
|