gentoo/dev-python/nose-parameterized/nose-parameterized-0.5.0.ebuild
Manuel Rüger 243f45ef24
dev-python/nose-parameterized: Add python3_6
Package-Manager: Portage-2.3.5, Repoman-2.3.2
2017-05-04 19:30:38 +02:00

24 lines
559 B
Bash

# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
inherit distutils-r1
DESCRIPTION="Parameterized testing with any Python test framework"
HOMEPAGE="https://github.com/kgrandis/nose-exclude"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
RDEPEND="dev-python/nose[${PYTHON_USEDEP}]"
python_test() {
nosetests -v || die
}