1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-23 11:15:13 +03:00
aports/community/py3-rx/APKBUILD
2021-07-17 16:59:44 +00:00

30 lines
781 B
Text

# Contributor: Rasmus Thomsen <oss@cogitri.dev>
# Maintainer: Rasmus Thomsen <oss@cogitri.dev>
pkgname=py3-rx
pkgver=3.2.0
pkgrel=0
pkgdesc="Reactive Extensions (Rx) for Python"
url="http://reactivex.io/"
arch="noarch"
license="MIT"
depends="python3"
makedepends="py3-setuptools py3-pytest-runner"
checkdepends="py3-pytest py3-coverage py3-pytest-asyncio"
source="https://github.com/ReactiveX/RxPY/archive/v$pkgver/py3-rx-$pkgver.tar.gz"
builddir="$srcdir/RxPY-$pkgver"
build() {
python3 setup.py build
}
check() {
python3 setup.py test
}
package() {
python3 setup.py install --prefix=/usr --root="$pkgdir"
}
sha512sums="
08a53344ea374b025e51ebf3a7de5ea4e83c7062d0c9a3370b795a56156c8aa068f2b3415f6e5e9e2424a11bcef53a412fd0667afb0016b58b7d2a741ea1007a py3-rx-3.2.0.tar.gz
"