diff options
| author | Liguros - Gitlab CI/CD [develop] <gitlab@liguros.net> | 2022-05-17 06:11:54 +0000 |
|---|---|---|
| committer | Liguros - Gitlab CI/CD [develop] <gitlab@liguros.net> | 2022-05-17 06:11:54 +0000 |
| commit | 4a6ee33d239871fd8918401a1b3fa8fc69963994 (patch) | |
| tree | dd0ff6fddf9964426117b223f65cf22674dc472b /dev-python/tinycss | |
| parent | 1c7f16d1677e8d90a5fcaa0fa90729918bf766a1 (diff) | |
| download | baldeagleos-repo-4a6ee33d239871fd8918401a1b3fa8fc69963994.tar.gz baldeagleos-repo-4a6ee33d239871fd8918401a1b3fa8fc69963994.tar.xz baldeagleos-repo-4a6ee33d239871fd8918401a1b3fa8fc69963994.zip | |
Adding metadata
Diffstat (limited to 'dev-python/tinycss')
| -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..5a2c4095f01d --- /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_{7,8,9,10} pypy3 ) + +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 +} |
