76 lines
2.1 KiB
Bash
76 lines
2.1 KiB
Bash
|
# Copyright 2020-2021 Gentoo Authors
|
||
|
# Distributed under the terms of the GNU General Public License v2
|
||
|
|
||
|
EAPI=7
|
||
|
|
||
|
PYTHON_COMPAT=( python3_{8..9})
|
||
|
DISTUTILS_USE_SETUPTOOLS="pyproject.toml"
|
||
|
|
||
|
inherit distutils-r1
|
||
|
|
||
|
DESCRIPTION="A Python Matrix client library, designed according to sans I/O principles"
|
||
|
HOMEPAGE="https://github.com/poljar/matrix-nio"
|
||
|
SRC_URI="https://github.com/poljar/matrix-nio/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
||
|
|
||
|
LICENSE="ISC"
|
||
|
SLOT="0"
|
||
|
KEYWORDS="~amd64"
|
||
|
IUSE="doc e2e test"
|
||
|
|
||
|
RDEPEND="
|
||
|
>=dev-python/future-0.18.2[${PYTHON_USEDEP}]
|
||
|
>=dev-python/aiohttp-3.7.4[${PYTHON_USEDEP}]
|
||
|
>=dev-python/aiohttp-socks-0.6.0[${PYTHON_USEDEP}]
|
||
|
>=dev-python/aiofiles-0.6.0[${PYTHON_USEDEP}]
|
||
|
>=dev-python/h11-0.12.0[${PYTHON_USEDEP}]
|
||
|
>=dev-python/hyper-h2-4.0.0[${PYTHON_USEDEP}]
|
||
|
>=dev-python/logbook-1.5.3[${PYTHON_USEDEP}]
|
||
|
>=dev-python/jsonschema-3.2.0[${PYTHON_USEDEP}]
|
||
|
>=dev-python/unpaddedbase64-2.1.0[${PYTHON_USEDEP}]
|
||
|
>=dev-python/pycryptodome-3.10.1[${PYTHON_USEDEP}]
|
||
|
e2e? (
|
||
|
>=dev-libs/olm-3.1.3[python(-),${PYTHON_USEDEP}]
|
||
|
>=dev-python/peewee-3.14.4[${PYTHON_USEDEP}]
|
||
|
>=dev-python/cachetools-4.2.1[${PYTHON_USEDEP}]
|
||
|
>=dev-python/atomicwrites-1.4.0[${PYTHON_USEDEP}]
|
||
|
)
|
||
|
"
|
||
|
DEPEND="
|
||
|
test? (
|
||
|
${RDEPEND}
|
||
|
dev-python/aioresponses[${PYTHON_USEDEP}]
|
||
|
dev-python/atomicwrites[${PYTHON_USEDEP}]
|
||
|
dev-python/cachetools[${PYTHON_USEDEP}]
|
||
|
dev-python/Faker[${PYTHON_USEDEP}]
|
||
|
dev-python/peewee[${PYTHON_USEDEP}]
|
||
|
dev-python/pytest-aiohttp[${PYTHON_USEDEP}]
|
||
|
dev-python/pytest-flake8[${PYTHON_USEDEP}]
|
||
|
dev-python/pytest-isort[${PYTHON_USEDEP}]
|
||
|
dev-python/pytest-cov[${PYTHON_USEDEP}]
|
||
|
dev-python/pytest-benchmark[${PYTHON_USEDEP}]
|
||
|
dev-python/hpack[${PYTHON_USEDEP}]
|
||
|
dev-python/hyperframe[${PYTHON_USEDEP}]
|
||
|
dev-python/hypothesis[${PYTHON_USEDEP}]
|
||
|
dev-python/mypy[${PYTHON_USEDEP}]
|
||
|
dev-python/mypy_extensions[${PYTHON_USEDEP}]
|
||
|
)
|
||
|
"
|
||
|
BDEPEND="
|
||
|
doc? ( dev-python/sphinx )
|
||
|
"
|
||
|
|
||
|
distutils_enable_tests pytest
|
||
|
|
||
|
# Tests dont parallelize happily
|
||
|
|
||
|
python_compile_all() {
|
||
|
if use doc; then
|
||
|
emacs -C docs html || die
|
||
|
fi
|
||
|
}
|
||
|
|
||
|
python_install_all() {
|
||
|
use doc && HTML_DOCS=( docs/build/html/. )
|
||
|
distutils-r1_python_install_all
|
||
|
}
|