33 lines
1010 B
Bash
33 lines
1010 B
Bash
# Copyright 1999-2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
PYTHON_COMPAT=( python3_{10..12} )
|
|
DISTUTILS_USE_PEP517=poetry
|
|
inherit distutils-r1 pypi
|
|
|
|
DESCRIPTION="A Python Matrix client library, designed according to sans I/O principles."
|
|
HOMEPAGE="https://github.com/poljar/matrix-nio https://pypi.org/project/matrix-nio/"
|
|
|
|
LICENSE="ISC"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 arm arm64 x86"
|
|
IUSE="test"
|
|
RESTRICT="!test? ( test )"
|
|
|
|
DOCS="README.md"
|
|
|
|
RDEPEND=">=dev-python/aiohttp-3.9.0[${PYTHON_USEDEP}]
|
|
>=dev-python/aiofiles-23.1.0[${PYTHON_USEDEP}]
|
|
>=dev-python/h11-0.14.0[${PYTHON_USEDEP}]
|
|
>=dev-python/h2-4.0.0[${PYTHON_USEDEP}]
|
|
>=dev-python/jsonschema-4.14.0[${PYTHON_USEDEP}]
|
|
>=dev-python/unpaddedbase64-2.1.0[${PYTHON_USEDEP}]
|
|
>=dev-python/pycryptodome-3.10.1[${PYTHON_USEDEP}]
|
|
>=dev-python/peewee-3.14.4[${PYTHON_USEDEP}]
|
|
>=dev-python/cachetools-4.2.1[${PYTHON_USEDEP}]
|
|
>=dev-python/aiohttp-socks-0.7.0[${PYTHON_USEDEP}]"
|
|
|
|
distutils_enable_tests pytest
|