Files
guru/dev-python/textual/textual-0.36.0.ebuild
Henri Gasc c208f61754 dev-python/textual: drop 0.14.0, add 0.36.0
Signed-off-by: Henri Gasc <gasc@eurecom.fr>
2023-09-07 00:02:23 +02:00

49 lines
1.3 KiB
Bash

# Copyright 2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=poetry
PYTHON_COMPAT=( python3_{10..11} )
inherit distutils-r1
DESCRIPTION="Modern Text User Interface framework"
HOMEPAGE="https://github.com/Textualize/textual https://pypi.org/project/textual/"
SRC_URI="https://github.com/Textualize/textual/archive/refs/tags/v${PV}.tar.gz -> ${P}.gh.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
RDEPEND="
>=dev-python/importlib-metadata-4.11.3[${PYTHON_USEDEP}]
dev-python/markdown-it-py[${PYTHON_USEDEP}]
>=dev-python/rich-13.3.3[${PYTHON_USEDEP}]
=dev-python/typing-extensions-4*[${PYTHON_USEDEP}]
"
BDEPEND="
test? (
dev-python/markdown-it-py[${PYTHON_USEDEP}]
>=dev-python/rich-13.3.3[${PYTHON_USEDEP}]
=dev-python/typing-extensions-4*[${PYTHON_USEDEP}]
dev-python/pytest-asyncio[${PYTHON_USEDEP}]
dev-python/textual-dev[${PYTHON_USEDEP}]
)
"
DEPEND="${RDEPEND}"
distutils_enable_tests pytest
python_install_all() {
distutils-r1_python_install_all
elog "If you want the documentation, you can read it at https://textual.textualize.io/"
}
python_test() {
# Those tests ask to press keys
local EPYTEST_IGNORE="tests/snapshot_tests/test_snapshots.py"
epytest "${S}/tests" || die "Tests failed with ${EPYTHON}"
}