# Contributor: Antoine Fontaine <antoine.fontaine@epfl.ch>
# Maintainer: Celeste <cielesti@protonmail.com>
maintainer="Celeste <cielesti@protonmail.com>"
pkgname=py3-matrix-nio
pkgver=0.25.2
pkgrel=0
pkgdesc="Python Matrix client library"
url="https://github.com/matrix-nio/matrix-nio"
arch="noarch"
license="ISC"
depends="
	py3-aiofiles
	py3-aiohttp
	py3-aiohttp-socks
	py3-h11
	py3-h2
	py3-jsonschema
	py3-logbook
	py3-pycryptodome
	py3-unpaddedbase64
	"
checkdepends="
	py3-aioresponses
	py3-atomicwrites
	py3-cachetools
	py3-faker
	py3-hpack
	py3-hyperframe
	py3-hypothesis
	py3-mypy
	py3-olm
	py3-peewee
	py3-pytest
	py3-pytest-aiohttp
	py3-pytest-asyncio
	py3-pytest-benchmark
	py3-pytest-cov
	py3-pytest-isort
	"
makedepends="
	py3-gpep517
	py3-setuptools
	"
subpackages="$pkgname-pyc"
source="https://github.com/matrix-nio/matrix-nio/archive/$pkgver/matrix-nio-$pkgver.tar.gz"
builddir="$srcdir/matrix-nio-$pkgver"

build() {
	gpep517 build-wheel \
		--wheel-dir .dist \
		--output-fd 3 3>&1 >&2
}

check() {
	python3 -m venv --clear --without-pip --system-site-packages .testenv
	.testenv/bin/python3 -m installer .dist/*.whl
	# test_connect_wrapper requires a network connection
	.testenv/bin/python3 -m pytest -k 'not test_connect_wrapper'

}

package() {
	python3 -m installer -d "$pkgdir" .dist/*.whl
}

sha512sums="
a85991b29113814b955bfd5ffde4f211f428d5dde8649f79fec9344b1efd7f1fdb362b00d1e93c07bb3f668eb10ce8f39665528c099db4bca47d2f70e460d474  matrix-nio-0.25.2.tar.gz
"
