gentoo/dev-python/nose-parameterized/nose-parameterized-0.5.0.ebuild
Sébastien Fabbro a992ebe872
dev-python/nose-parameterized: initial import
Package-Manager: portage-2.3.2
2016-10-29 00:42:38 +00:00

25 lines
564 B
Bash

# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=6
PYTHON_COMPAT=( python2_7 python3_{4,5} )
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
}