1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-25 12:15:32 +03:00
aports/community/py3-pytest-localserver/APKBUILD

28 lines
861 B
Text

# Contributor: Keith Maxwell <keith.maxwell@gmail.com>
# Maintainer: Keith Maxwell <keith.maxwell@gmail.com>
pkgname=py3-pytest-localserver
_pyname=pytest-localserver
pkgver=0.5.0
pkgrel=2
pkgdesc="a pytest plugin to test server connections locally"
url="http://bitbucket.org/pytest-dev/pytest-localserver/"
arch="noarch"
license="MIT"
depends="python3"
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="aedf1e1c9563396457070df13df228ad0ebdd19173fa2ac5a598288d3e1a1ac8b8a0c0288cba0d8478e43d2e1de4848f2393bf640705916957f12ab31171c6cc pytest-localserver-0.5.0.tar.gz"