# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 PYTHON_COMPAT=( python3_{9..11} ) DISTUTILS_USE_PEP517=poetry inherit distutils-r1 DESCRIPTION="One version package to rule them all, One version package to find them, One version package to bring them all, and in the darkness bind them." HOMEPAGE="https://github.com/ludeeus/awesomeversion https://pypi.org/project/awesomeversion/" SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" LICENSE="MIT" SLOT="0" KEYWORDS="amd64 arm arm64 x86" IUSE="test" RESTRICT="!test? ( test )" DOCS="README.md" BDEPEND=" dev-python/setuptools[${PYTHON_USEDEP}] test? ( dev-python/pytest[${PYTHON_USEDEP}] dev-python/pytest-cov[${PYTHON_USEDEP}] )" python_test() { py.test -v -v || die } distutils_enable_tests pytest # include = ["awesomeversion", "awesomeversion.*", "LICENCE.md"] python_prepare_all() { sed -i -e 's:, "LICENCE.md"::' pyproject.toml || die distutils-r1_python_prepare_all }