diff options
Diffstat (limited to 'dev-python/async/async-0.6.2.ebuild')
-rw-r--r-- | dev-python/async/async-0.6.2.ebuild | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/dev-python/async/async-0.6.2.ebuild b/dev-python/async/async-0.6.2.ebuild new file mode 100644 index 00000000000..5982a341bc3 --- /dev/null +++ b/dev-python/async/async-0.6.2.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="5" + +PYTHON_COMPAT=( python2_7 python3_{3,4} ) + +inherit distutils-r1 + +DESCRIPTION="Async Framework" +HOMEPAGE=" + http://gitorious.org/git-python/async + http://pypi.python.org/pypi/async" +SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" + +LICENSE="BSD" +KEYWORDS="amd64 x86" +SLOT="0" +IUSE="test" + +RDEPEND="" +DEPEND=" + dev-python/setuptools[${PYTHON_USEDEP}] + test? ( dev-python/nose[${PYTHON_USEDEP}] ) + " + +python_test() { + nosetests || die +} |