diff options
author | 2022-05-16 21:46:27 +0300 | |
---|---|---|
committer | 2022-05-16 21:58:05 +0300 | |
commit | 2185987149866efe87dd2297d8e9f6029457d1a6 (patch) | |
tree | cc0186cbe6d97903a842cbb6a16cd87c82dad381 /dev-python | |
parent | dev-python/texttable: EAPI=8, PEP517 (diff) | |
download | gentoo-2185987149866efe87dd2297d8e9f6029457d1a6.tar.gz gentoo-2185987149866efe87dd2297d8e9f6029457d1a6.tar.bz2 gentoo-2185987149866efe87dd2297d8e9f6029457d1a6.zip |
dev-python/tinycss: EAPI=8, PEP517
Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
Diffstat (limited to 'dev-python')
-rw-r--r-- | dev-python/tinycss/tinycss-0.4-r1.ebuild | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/dev-python/tinycss/tinycss-0.4-r1.ebuild b/dev-python/tinycss/tinycss-0.4-r1.ebuild new file mode 100644 index 000000000000..0b65a57ee7c2 --- /dev/null +++ b/dev-python/tinycss/tinycss-0.4-r1.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{8..10} ) + +inherit distutils-r1 + +DESCRIPTION="A complete yet simple CSS parser for Python" +HOMEPAGE="https://github.com/SimonSapin/tinycss/ + https://tinycss.readthedocs.io/en/latest/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND="dev-python/lxml[${PYTHON_USEDEP}]" + +DOCS=( CHANGES README.rst ) + +distutils_enable_tests pytest +distutils_enable_sphinx docs + +python_prepare_all() { + rm setup.cfg || die + distutils-r1_python_prepare_all +} + +python_test() { + export TINYCSS_SKIP_SPEEDUPS_TESTS=1 + epytest ${PN}/tests/test_*.py +} |