blob: af5332c1c57ae64c20fd0d4c3735c120582571fa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
# 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} )
PYTHON_REQ_USE="threads(+),sqlite"
inherit distutils-r1 git-r3
DESCRIPTION="Neuroimaging in Python: Pipelines and Interfaces"
HOMEPAGE="http://nipy.sourceforge.net/nipype/"
SRC_URI=""
EGIT_REPO_URI="https://github.com/nipy/nipype"
LICENSE="BSD"
SLOT="0"
KEYWORDS=""
IUSE="test"
DEPEND="
dev-python/future[${PYTHON_USEDEP}]
dev-python/prov[${PYTHON_USEDEP}]
dev-python/numpy[${PYTHON_USEDEP}]
dev-python/setuptools[${PYTHON_USEDEP}]
sci-libs/nibabel[${PYTHON_USEDEP}]
test? ( dev-python/mock[${PYTHON_USEDEP}] )
$(python_gen_cond_dep 'dev-python/configparser[${PYTHON_USEDEP}]' python2_7)
"
RDEPEND="
dev-python/networkx[${PYTHON_USEDEP}]
dev-python/pydotplus[${PYTHON_USEDEP}]
dev-python/pygraphviz[${PYTHON_USEDEP}]
dev-python/traits[${PYTHON_USEDEP}]
sci-libs/scipy[${PYTHON_USEDEP}]
dev-python/simplejson[${PYTHON_USEDEP}]
"
python_prepare_all() {
distutils-r1_python_prepare_all
EXISTING_REQUIRE="setup_requires=\['future', 'configparser'\]"
CORRECTED_REQUIRE="setup_requires=\['future'\]"
sed \
-e "s/${EXISTING_REQUIRE}/${CORRECTED_REQUIRE}/g" \
-i setup.py \
|| die "sed setup.py"
}
python_test() {
nosetests -v || die
}
|