blob: 027f9184784ea4e7c3cd72beb9586052d40c9d2f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
# Contributor: Rasmus Thomsen <oss@cogitri.dev>
# Maintainer: Rasmus Thomsen <oss@cogitri.dev>
pkgname=py3-rx
pkgver=3.0.1
pkgrel=0
pkgdesc="Reactive Extensions (Rx) for Python"
url="http://reactivex.io/"
arch="noarch"
license="MIT"
depends="python3"
makedepends="py3-setuptools"
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="feef78481c8cbd263ad5392157d6ee2efac322b7760c55a793c38e4d16b1c7210e0e80dae4206f58195ce03f5bc81106afe28045585afaa6a30d903253e55ce8 py3-rx-3.0.1.tar.gz"
|