sphinx-autodoc-typehints-1.6.0 added

This commit is contained in:
2019-01-30 18:32:17 +01:00
parent b1a5956474
commit 8a0b3fb12d
2 changed files with 33 additions and 0 deletions

View File

@@ -0,0 +1,2 @@
DIST sphinx-autodoc-typehints-1.6.0.tar.gz 11752 BLAKE2B 4aadda769d19cea73430b49ffcb0f2abd7f046300a0642d4d025ff77e9bbc66d33e2c4c98dc5c1a1320492c89e810ce8f008b7eec8803d508e438bbef5141209 SHA512 01d832592721528f45f5c5867e1c5fb859ae0cecff51cd033a172fc3aae972662e83913aef95dcd2f41c8140475ae668dd3ae5aab6fb8d5f1e295a1efceb3c1c
EBUILD sphinx-autodoc-typehints-1.6.0.ebuild 682 BLAKE2B 1cdcd11871718d584cf5fde1aa5dd6e489f8f7887d13455a10d89bb916b52af96d8e2b6274659b8ba62a716192f58461bf809bc923e1f61071198bfa0b9f7e81 SHA512 da8a93590e3d8ff670b45c6c7d810a5619fad17401b2367d45f50ce3d9fdf4146aa9ff973fceb5bea31bdfb04ebe413456584160124f79ec78dacbaa753b0c7e

View File

@@ -0,0 +1,31 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=6
PYTHON_COMPAT=( python3_{5,6,7} )
inherit distutils-r1
DESCRIPTION="Type hints (PEP 484) support for the Sphinx autodoc extension"
HOMEPAGE=" https://pypi.org/project/sphinx-autodoc-typehints/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND=""
DEPEND="${REDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/nose[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
nosetests --verbose || die
py.test -v -v || die
}