diff options
author | Horea Christian <horea.christ@yandex.com> | 2016-09-23 15:16:23 +0200 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2016-09-23 14:16:23 +0100 |
commit | 96e2cb78a44557e310b7e0407de0e4c440a812e5 (patch) | |
tree | 8ef57f1353d27457442f4e3c0ba4df180ee4083a /sci-biology/nireg/nireg-9999.ebuild | |
parent | sci-biology/nitime: new ebuild (#679) (diff) | |
download | sci-96e2cb78a44557e310b7e0407de0e4c440a812e5.tar.gz sci-96e2cb78a44557e310b7e0407de0e4c440a812e5.tar.bz2 sci-96e2cb78a44557e310b7e0407de0e4c440a812e5.zip |
sci-biology/nireg:new ebuild (#680)
Package-Manager: portage-2.3.0
Diffstat (limited to 'sci-biology/nireg/nireg-9999.ebuild')
-rw-r--r-- | sci-biology/nireg/nireg-9999.ebuild | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/sci-biology/nireg/nireg-9999.ebuild b/sci-biology/nireg/nireg-9999.ebuild new file mode 100644 index 000000000..15cc644ca --- /dev/null +++ b/sci-biology/nireg/nireg-9999.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +PYTHON_COMPAT=( python{2_7,3_4,3_5} ) + +inherit distutils-r1 git-r3 + +DESCRIPTION="Image registration package for Python." +HOMEPAGE="http://nipy.org/" +SRC_URI="" +EGIT_REPO_URI="https://github.com/nipy/${PN}" + +LICENSE="BSD" +SLOT="0" +IUSE="test" +KEYWORDS="" + +COMMONDEPEND="dev-python/numpy[${PYTHON_USEDEP}]" +DEPEND="${COMMONDEPEND} + dev-python/setuptools[${PYTHON_USEDEP}] + test? ( dev-python/nose[${PYTHON_USEDEP}] )" +RDEPEND="${COMMONDEPEND} + sci-libs/scipy[${PYTHON_USEDEP}] + sci-libs/nibabel[${PYTHON_USEDEP}] + " + +python_test() { + #nosetests -v || die + python -c "import nireg; nireg.test()" || die +} |