summaryrefslogtreecommitdiff
path: root/dev-python/apispec/apispec-4.2.0.ebuild
diff options
context:
space:
mode:
authorZamarin Arthur <arthurzam@gmail.com>2021-05-22 11:55:14 +0300
committerMichał Górny <mgorny@gentoo.org>2021-05-22 20:18:10 +0200
commit66f527ae67acd185b2cce576a0fbb596aa6297c1 (patch)
tree0fd7f23aec73ef504e71a8443e1e4390533c74c3 /dev-python/apispec/apispec-4.2.0.ebuild
parent0968b664c6e0705232fd086c305bb3c44c9c864b (diff)
downloadgentoo-66f527ae67acd185b2cce576a0fbb596aa6297c1.tar.gz
gentoo-66f527ae67acd185b2cce576a0fbb596aa6297c1.tar.bz2
gentoo-66f527ae67acd185b2cce576a0fbb596aa6297c1.zip
dev-python/apispec: drop 3.3.0, 4.2.0, 4.3.0, 4.4.0
Signed-off-by: Zamarin Arthur <arthurzam@gmail.com> Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/apispec/apispec-4.2.0.ebuild')
-rw-r--r--dev-python/apispec/apispec-4.2.0.ebuild37
1 files changed, 0 insertions, 37 deletions
diff --git a/dev-python/apispec/apispec-4.2.0.ebuild b/dev-python/apispec/apispec-4.2.0.ebuild
deleted file mode 100644
index fb3382c1bafd..000000000000
--- a/dev-python/apispec/apispec-4.2.0.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# 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=(
- 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}"
-}