35 lines
697 B
Bash
35 lines
697 B
Bash
|
# Copyright 1999-2021 Gentoo Authors
|
||
|
# Distributed under the terms of the GNU General Public License v2
|
||
|
|
||
|
# credit goes to ebuild repository gentoo-zh
|
||
|
|
||
|
EAPI=7
|
||
|
PYTHON_COMPAT=( python3_{8,9} pypy3 )
|
||
|
|
||
|
inherit distutils-r1
|
||
|
|
||
|
DESCRIPTION="Implementation of the asyncio (PEP 3156) event-loop with Qt"
|
||
|
HOMEPAGE="https://github.com/aio-libs/janus"
|
||
|
MY_P="${P/_alpha/a}"
|
||
|
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${MY_P}.tar.gz"
|
||
|
IUSE="test"
|
||
|
|
||
|
LICENSE="BSD"
|
||
|
SLOT="0"
|
||
|
KEYWORDS="~amd64"
|
||
|
|
||
|
DEPEND="
|
||
|
dev-python/setuptools[${PYTHON_USEDEP}]
|
||
|
test? (
|
||
|
dev-python/pytest[${PYTHON_USEDEP}]
|
||
|
)
|
||
|
"
|
||
|
|
||
|
python_test() {
|
||
|
py.test -v || die "Tests fail with ${EPYTHON}"
|
||
|
}
|
||
|
|
||
|
python_install_all() {
|
||
|
distutils-r1_python_install_all
|
||
|
}
|