summaryrefslogtreecommitdiff
path: root/dev-python
diff options
context:
space:
mode:
Diffstat (limited to 'dev-python')
-rw-r--r--dev-python/apispec/Manifest2
-rw-r--r--dev-python/apispec/apispec-6.9.0.ebuild43
2 files changed, 45 insertions, 0 deletions
diff --git a/dev-python/apispec/Manifest b/dev-python/apispec/Manifest
index 94c1695efa87..4d7ae5a477e2 100644
--- a/dev-python/apispec/Manifest
+++ b/dev-python/apispec/Manifest
@@ -1,2 +1,4 @@
DIST apispec-6.8.4.tar.gz 77737 BLAKE2B 8b09b2f1dcfb415d6e91951474a3cb13862465a7afb16511cd5783b4b67c10d8878f832d9a61f1dea9dedce77d14d028752e7c3fe27ecb0be0c7fb0fe2fc1f38 SHA512 9ce3890d335ea8ff1f3ed01ef5f7c2cedbf89c1a337c1d018d71e00e8e3451556d61d248a5138153ef4acabe0296c77d290aa3fdaedada32faced0e48076af6e
DIST apispec-6.8.4.tar.gz.provenance 9577 BLAKE2B 4268b78efe584f24ea2af6ed1eb9034e077c1eaa626126782443aa7e5e175ca98af666d2f7a9bcc1ab7ac9566ccda9f13a7f41a5830012db6dbf491c32953904 SHA512 a854e61678521465747aa0d8c5308eb72f420037011db6774dd8514242ceed46cdeba404d39f88cb6f876a7391af4efd22bbf4f55e7c0da9274299577c94c6ab
+DIST apispec-6.9.0.tar.gz 77846 BLAKE2B da25bf638f4db8c9c804ff464bd88239905e6ca6367ff8b927d9fbb85d35a385a1cd666bf0a86d725c4d6b77c569364dba009a7c74bd9490519bd8a397409cb8 SHA512 38474fcb98b286267e0af6685bb5a3e7439abb6cf40cc072ff851c61b5e667fd4ce9648b9820e7671134f6b99a8e4c0f398ddc33767ba713c12b9ae87bbd7e03
+DIST apispec-6.9.0.tar.gz.provenance 9358 BLAKE2B 0ef97adfcf480747d1db9d3611cabea97c20d895cda8b7d40ef128a09533ea3ef7e707a471038416efe089d906506ade8a586df419437806a21145f3e430e129 SHA512 d1372d2577cdbe0f3c94d7edef66b833860e9493af7da5cdc94fe04467062e5dc066d999542ddc408a868a12ecf6e54a254f56b28be9fb345ce30791b184ba66
diff --git a/dev-python/apispec/apispec-6.9.0.ebuild b/dev-python/apispec/apispec-6.9.0.ebuild
new file mode 100644
index 000000000000..675ca50503b9
--- /dev/null
+++ b/dev-python/apispec/apispec-6.9.0.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=flit
+PYPI_VERIFY_REPO=https://github.com/marshmallow-code/apispec
+PYTHON_COMPAT=( python3_{11..14} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="A pluggable API specification generator"
+HOMEPAGE="
+ https://github.com/marshmallow-code/apispec/
+ https://pypi.org/project/apispec/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+
+RDEPEND="
+ >=dev-python/packaging-21.3[${PYTHON_USEDEP}]
+ >=dev-python/pyyaml-3.10[${PYTHON_USEDEP}]
+"
+BDEPEND="
+ test? (
+ dev-python/bottle[${PYTHON_USEDEP}]
+ >=dev-python/marshmallow-3.18.0[${PYTHON_USEDEP}]
+ )
+"
+
+EPYTEST_PLUGINS=()
+distutils_enable_tests pytest
+distutils_enable_sphinx docs \
+ dev-python/sphinx-issues \
+ dev-python/sphinx-rtd-theme
+
+EPYTEST_DESELECT=(
+ # requires unpackaged prance
+ tests/test_ext_marshmallow_openapi.py::test_openapi_tools_validate_v2
+ tests/test_ext_marshmallow_openapi.py::test_openapi_tools_validate_v3
+)