mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-23 03:05:48 +03:00
25 lines
721 B
Text
25 lines
721 B
Text
# Maintainer: Michał Adamski <michal@ert.pl>
|
|
pkgname=py3-aiorpcx
|
|
pkgver=0.18.7
|
|
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="7d2c3495a4b4cdd1bd91478324685ee8b131a6e3f5f6665324f508e9b211c0ffb6d5590e7fb603f0919724a1983586aeaffd024f95880026baf43d70167a8bf1 aiorpcX-0.18.7.tar.gz"
|