cf088c579f
Package-Manager: Portage-3.0.4, Repoman-3.0.1 Signed-off-by: Alfred Wingate <parona@protonmail.com>
36 lines
819 B
Bash
36 lines
819 B
Bash
# Copyright 2020 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
PYTHON_COMPAT=( python3_{6,7,8,9})
|
|
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="e2e"
|
|
|
|
RDEPEND="
|
|
dev-python/future
|
|
dev-python/aiohttp
|
|
dev-python/aiofiles
|
|
python_targets_python3_6? ( dev-python/dataclasses )
|
|
dev-python/h11
|
|
dev-python/hyper-h2
|
|
dev-python/logbook
|
|
dev-python/jsonschema
|
|
dev-python/unpaddedbase64
|
|
dev-python/pycryptodome
|
|
e2e? (
|
|
>=dev-libs/olm-3.1.5[python(-)]
|
|
>=dev-python/peewee-3.9.5
|
|
dev-python/cachetools
|
|
dev-python/atomicwrites
|
|
)
|
|
"
|