mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-21 18:25:41 +03:00
24 lines
800 B
Text
24 lines
800 B
Text
# Contributor: Antoine Fontaine <antoine.fontaine@epfl.ch>
|
|
# Maintainer: Antoine Fontaine <antoine.fontaine@epfl.ch>
|
|
pkgname=py3-pytest-aiohttp
|
|
pkgver=0.3.0
|
|
pkgrel=1
|
|
pkgdesc="pytest plugin for aiohttp support"
|
|
options="!check" # no testsuite
|
|
url="https://github.com/aio-libs/pytest-aiohttp/"
|
|
arch="noarch"
|
|
license="Apache-2.0"
|
|
depends="python3"
|
|
makedepends="py3-setuptools"
|
|
source="https://files.pythonhosted.org/packages/source/p/pytest-aiohttp/pytest-aiohttp-$pkgver.tar.gz"
|
|
builddir="$srcdir/pytest-aiohttp-$pkgver"
|
|
|
|
build() {
|
|
python3 setup.py build
|
|
}
|
|
|
|
package() {
|
|
python3 setup.py install --prefix=/usr --root="$pkgdir"
|
|
}
|
|
|
|
sha512sums="4164166465dc40ff78a86304d1bcd4db9fb3f7dad3188f8ebe2ff151ed51eb0bf9c1b7a608d94cfe3339ee3b6efd4d5abbaa0691388460d5ac95635afa14984c pytest-aiohttp-0.3.0.tar.gz"
|