dev-python/json-repair: new package, add 0.61.0

Signed-off-by: Florian Albrechtskirchinger <falbrechtskirchinger@gmail.com>
This commit is contained in:
Florian Albrechtskirchinger
2026-06-26 13:08:41 +02:00
parent 402c3ea7a2
commit 4594811aa0
3 changed files with 58 additions and 0 deletions

View File

@@ -0,0 +1,45 @@
# Copyright 2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( python3_{12..15} )
inherit distutils-r1
MY_PN="json_repair"
MY_P="${MY_PN}-${PV}"
DESCRIPTION="A package to repair broken json strings"
HOMEPAGE="
https://github.com/mangiucugna/json_repair
https://pypi.org/project/json-repair/
"
SRC_URI="
https://github.com/mangiucugna/${MY_PN}/archive/v${PV}.tar.gz
-> ${P}.gh.tar.gz
"
S="${WORKDIR}/${MY_P}/"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm64"
# mypy is used in tests for type inference
BDEPEND="
test? (
dev-python/flask[${PYTHON_USEDEP}]
dev-python/flask-cors[${PYTHON_USEDEP}]
dev-python/jsonschema[${PYTHON_USEDEP}]
dev-python/mypy[${PYTHON_USEDEP}]
dev-python/pydantic[${PYTHON_USEDEP}]
)
"
EPYTEST_PLUGINS=()
distutils_enable_tests pytest
EPYTEST_IGNORE=(
# pytest-benchmark
tests/test_performance.py
)