Andreas Billmeier (@Home/mbp) 310562669f
dev-python/aioconsole: update 0.5.1, remove SRC_URI
dev-python/whirlpool-sixth-sense: add 0.18.3, drop 0.17.0, update 0.18.2

Signed-off-by: Andreas Billmeier <b@edevau.net>
2023-05-29 09:43:36 +02:00

33 lines
738 B
Bash

# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{10..12} )
DISTUTILS_USE_PEP517=setuptools
inherit distutils-r1 pypi
DESCRIPTION="Asynchronous console and interfaces for asyncio"
HOMEPAGE="https://github.com/vxgmichel/aioconsole https://pypi.org/project/aioconsole/"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.rst"
BDEPEND="
test? (
dev-python/pytest[${PYTHON_USEDEP}]
dev-python/pytest-asyncio[${PYTHON_USEDEP}]
dev-python/pytest-cov[${PYTHON_USEDEP}]
dev-python/pytest-runner[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}
distutils_enable_tests pytest