mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-19 09:15:30 +03:00
30 lines
926 B
Text
30 lines
926 B
Text
# Contributor: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
pkgname=py3-aiohttp-session
|
|
_pkgname=aiohttp_session
|
|
pkgver=2.9.0
|
|
pkgrel=1
|
|
pkgdesc="Sessions support for aiohttp"
|
|
url="https://aiohttp-session.readthedocs.io/"
|
|
arch="noarch"
|
|
license="Apache-2.0"
|
|
# Requires packages for tests which are not available
|
|
options="!check"
|
|
depends="py3-aiohttp"
|
|
makedepends="python3-dev py3-setuptools"
|
|
source="aiohttp-session-$pkgver.tar.gz::https://github.com/aio-libs/aiohttp-session/archive/v$pkgver.tar.gz"
|
|
builddir="$srcdir"/aiohttp-session-$pkgver
|
|
|
|
build() {
|
|
python3 setup.py build
|
|
}
|
|
|
|
check() {
|
|
python3 setup.py test
|
|
}
|
|
|
|
package() {
|
|
python3 setup.py install --prefix=/usr --root="$pkgdir"
|
|
}
|
|
|
|
sha512sums="27c1c1553bfb65e8d277ada226917835ea92dd0593c28988a8800a275fd7ec7c304f10ebb18320fe582e92440ac6b2621ca5eb2f3a3cd5ef1b068fe41ae178fa aiohttp-session-2.9.0.tar.gz"
|