# Maintainer: Morten Linderud # Maintainer: Chih-Hsuan Yen # Maintainer: Anatol Pomozov # ALARM: Kevin Mihelich # - removed AUTOBAHN_USE_NVX=1 from python build/install commands pkgname=python-autobahn pkgver=20.1.3 pkgrel=1 pkgdesc='Real-time framework for Web, Mobile & Internet of Things' arch=(x86_64) url='https://crossbar.io/autobahn/' license=(MIT) depends=(python-cffi python-twisted python-six python-txaio python-wsaccel python-setuptools python-cryptography) makedepends=(python-argon2_cffi python-cbor python-flatbuffers python-msgpack python-passlib python-pynacl python-pytrie python-ubjson) checkdepends=(python-mock python-pytest python-pytest-asyncio) optdepends=( 'python-cbor: CBOR serializer support' 'python-flatbuffers: FlatBuffers serializer support' 'python-msgpack: MsgPack serializer support' 'python-ubjson: UBJSON serializer support' 'python-argon2_cffi: WAMP-SCRAM authentication support' 'python-passlib: WAMP-SCRAM authentication support' 'python-pynacl: WAMP-cryptosign and WAMP-cryptobox support' 'python-pytrie: WAMP-cryptobox support' ) source=(https://files.pythonhosted.org/packages/source/a/autobahn/autobahn-$pkgver.tar.gz) sha256sums=('a428b43f13116e212cb98ba646697021ed52f65d50373fee0886dfa484769b2b') build() { cd "$srcdir/autobahn-$pkgver" python setup.py build } check() { cd "$srcdir/autobahn-$pkgver" pyver=$(python -c "import sys; print('{}.{}'.format(*sys.version_info[:2]))") # "autobahn on asyncio is tested using pytest, while for twisted we are using twisted trial" # https://github.com/crossbario/autobahn-python/issues/1235#issuecomment-522440810 USE_TWISTED=1 PYTHONPATH=.:build/lib.linux-$CARCH-$pyver trial3 autobahn USE_ASYNCIO=1 PYTHONPATH=.:build/lib.linux-$CARCH-$pyver pytest -v autobahn } package() { cd "$srcdir/autobahn-$pkgver" python setup.py install --root="$pkgdir" --optimize=1 --skip-build install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE" }