aboutsummaryrefslogtreecommitdiff
blob: 35bcaab6b728cfe8aa6ff250e8957b6c3c748588 (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
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=7

PYTHON_COMPAT=( python3_{7,8} )

inherit distutils-r1

DESCRIPTION="Neuroimaging tools for Python"
HOMEPAGE="https://github.com/TheChymera/behaviopy"
SRC_URI="https://github.com/TheChymera/behaviopy/archive/${PV}.tar.gz -> ${P}.tar.gz"

LICENSE="GPL-3"
SLOT="0"
IUSE="evaluation test"
KEYWORDS="~amd64 ~x86"
RESTRICT="!test? ( test )"

DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
RDEPEND="
	dev-python/matplotlib[${PYTHON_USEDEP}]
	dev-python/numpy[${PYTHON_USEDEP}]
	dev-python/pandas[${PYTHON_USEDEP}]
	dev-python/seaborn[${PYTHON_USEDEP}]
	dev-python/statsmodels[${PYTHON_USEDEP}]
	dev-python/scipy[${PYTHON_USEDEP}]
	"

src_prepare() {
	if ! use evaluation; then
		rm behaviopy/evaluation.py || die
	fi
	default
}

python_test() {
	cd behaviopy/examples
	echo "backend : Agg" > matplotlibrc || die
	for i in *py; do
		echo "Executing $i"
		${EPYTHON} $i || die
	done
}