mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-13 00:53:02 -04:00
52 lines
1.4 KiB
Bash
52 lines
1.4 KiB
Bash
# Copyright 1999-2023 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
DISTUTILS_USE_PEP517=poetry
|
|
PYTHON_COMPAT=( python3_{10..12} )
|
|
|
|
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/"
|
|
}
|
|
|
|
EPYTEST_DESELECT=(
|
|
# Those tests ask to press keys
|
|
tests/snapshot_tests/test_snapshots.py
|
|
|
|
# Need a package that should be optional
|
|
tests/text_area/test_languages.py::test_register_language
|
|
tests/text_area/test_languages.py::test_register_language_existing_language
|
|
)
|