summaryrefslogtreecommitdiff
path: root/dev-python/openapi-schema-validator/openapi-schema-validator-0.4.1.ebuild
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2023-01-25 12:48:52 +0000
committerLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2023-01-25 12:48:52 +0000
commitbb41d818836a057f68fa8e843f88d8efe2a4ea59 (patch)
tree381e3cf94ec145ff3f2aa7c90441fd1b1eab754f /dev-python/openapi-schema-validator/openapi-schema-validator-0.4.1.ebuild
parent4b82a2cb8fdffa555fbfb7c30ad6f24a45360158 (diff)
downloadbaldeagleos-repo-bb41d818836a057f68fa8e843f88d8efe2a4ea59.tar.gz
baldeagleos-repo-bb41d818836a057f68fa8e843f88d8efe2a4ea59.tar.xz
baldeagleos-repo-bb41d818836a057f68fa8e843f88d8efe2a4ea59.zip
Adding metadata
Diffstat (limited to 'dev-python/openapi-schema-validator/openapi-schema-validator-0.4.1.ebuild')
-rw-r--r--dev-python/openapi-schema-validator/openapi-schema-validator-0.4.1.ebuild37
1 files changed, 37 insertions, 0 deletions
diff --git a/dev-python/openapi-schema-validator/openapi-schema-validator-0.4.1.ebuild b/dev-python/openapi-schema-validator/openapi-schema-validator-0.4.1.ebuild
new file mode 100644
index 000000000000..6d10cc17cc22
--- /dev/null
+++ b/dev-python/openapi-schema-validator/openapi-schema-validator-0.4.1.ebuild
@@ -0,0 +1,37 @@
+# Copyright 2022-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=poetry
+PYTHON_COMPAT=( python3_{7,8,9,10,11} pypy3 )
+
+inherit distutils-r1
+
+DESCRIPTION="OpenAPI schema validation for Python"
+HOMEPAGE="
+ https://github.com/p1c2u/openapi-schema-validator/
+ https://pypi.org/project/openapi-schema-validator/
+"
+SRC_URI="
+ https://github.com/p1c2u/openapi-schema-validator/archive/${PV}.tar.gz
+ -> ${P}.gh.tar.gz
+"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86"
+
+RDEPEND="
+ dev-python/isodate[${PYTHON_USEDEP}]
+ >=dev-python/jsonschema-4.0.0[${PYTHON_USEDEP}]
+ dev-python/rfc3339-validator[${PYTHON_USEDEP}]
+ dev-python/strict-rfc3339[${PYTHON_USEDEP}]
+"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+ sed -e '/--cov/d' -i pyproject.toml || die
+ distutils-r1_src_prepare
+}