blob: 2bf1680d6b319876d429a87700082475717cca6f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
# Copyright 2023-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( python3_{12..14} )
DOCS_BUILDER="sphinx"
inherit distutils-r1
DESCRIPTION="Collection of 60+ Python functions for validating data"
HOMEPAGE="
https://github.com/insightindustry/validator-collection
https://pypi.org/project/validator-collection
"
SRC_URI="https://github.com/insightindustry/${PN}/archive/refs/tags/v.${PV}.tar.gz -> ${P}.gh.tar.gz"
S="${WORKDIR}/${PN}-v.${PV}"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
RDEPEND="dev-python/jsonschema[${PYTHON_USEDEP}]"
BDEPEND="
test? (
dev-python/pyfakefs[${PYTHON_USEDEP}]
)
"
EPYTEST_DESELECT=(
# Errors, probably because of missing privileges or problems in the virtual file system used in the tests
"tests/test_checkers.py::test_is_readable[/var/data/xx1.txt-True-False]"
"tests/test_validators.py::test_readable[/var/data/xx1.txt-True-False]"
"tests/test_validators.py::test_writeable[/var/data/xx1.txt-True-False]"
"tests/test_validators.py::test_executable[/var/data/xx1.txt-True-False]"
)
distutils_enable_tests pytest
distutils_enable_sphinx docs \
dev-python/sphinx-rtd-theme \
dev-python/sphinx-tabs
|