summaryrefslogtreecommitdiff
path: root/dev-python/apispec/apispec-4.3.0.ebuild
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2021-02-11 09:37:25 +0100
committerMichał Górny <mgorny@gentoo.org>2021-02-11 09:40:49 +0100
commit2975baa91315a44fa6cca1ab333fe47dfadd7dbe (patch)
tree0bc4c902aa76079938668aa089f8a28ff2d754d7 /dev-python/apispec/apispec-4.3.0.ebuild
parent65a4d2f45b92a8deaede86f2e9fca19a865fa2a8 (diff)
downloadgentoo-2975baa91315a44fa6cca1ab333fe47dfadd7dbe.tar.gz
gentoo-2975baa91315a44fa6cca1ab333fe47dfadd7dbe.tar.bz2
gentoo-2975baa91315a44fa6cca1ab333fe47dfadd7dbe.zip
dev-python/apispec: Bump to 4.3.0
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/apispec/apispec-4.3.0.ebuild')
-rw-r--r--dev-python/apispec/apispec-4.3.0.ebuild38
1 files changed, 38 insertions, 0 deletions
diff --git a/dev-python/apispec/apispec-4.3.0.ebuild b/dev-python/apispec/apispec-4.3.0.ebuild
new file mode 100644
index 000000000000..ea727b22fc6b
--- /dev/null
+++ b/dev-python/apispec/apispec-4.3.0.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+PYTHON_COMPAT=( python3_{7..9} )
+
+inherit distutils-r1
+
+DESCRIPTION="A pluggable API specification generator."
+HOMEPAGE="https://github.com/marshmallow-code/apispec/"
+SRC_URI="https://github.com/marshmallow-code/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+ >=dev-python/pyyaml-3.10[${PYTHON_USEDEP}]
+"
+BDEPEND="${RDEPEND}
+ test? (
+ dev-python/bottle[${PYTHON_USEDEP}]
+ dev-python/mock[${PYTHON_USEDEP}]
+ dev-python/marshmallow[${PYTHON_USEDEP}]
+ )"
+
+distutils_enable_tests pytest
+
+python_test() {
+ local 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
+ )
+
+ pytest -vv ${deselect[@]/#/--deselect } ||
+ die "Tests failed with ${EPYTHON}"
+}