1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-24 19:55:26 +03:00
aports/testing/py3-aiorpcx/APKBUILD
2020-06-11 18:30:38 +02:00

25 lines
721 B
Text

# Maintainer: Michał Adamski <michal@ert.pl>
pkgname=py3-aiorpcx
pkgver=0.18.4
pkgrel=0
pkgdesc="Generic async RPC implementation, including JSON-RPC"
url="https://github.com/kyuupichan/aiorpcX"
arch="noarch"
license="MIT"
depends="python3 py3-websockets"
makedepends="py3-setuptools"
source="https://files.pythonhosted.org/packages/source/a/aiorpcX/aiorpcX-$pkgver.tar.gz"
builddir="$srcdir/aiorpcX-$pkgver"
build() {
python3 setup.py build
}
check() {
python3 setup.py check
}
package() {
python3 setup.py install --prefix=/usr --root="$pkgdir"
}
sha512sums="510c75129d9d1b9d045c487a8afcae33373910e0448b0d34c4b9bc1c22cd5b3cffdd8cc212064d1b23318d209c37dc1ec968e68bcb9ad09a9cedd1e761dbe781 aiorpcX-0.18.4.tar.gz"