aboutsummaryrefslogtreecommitdiff
blob: 94a827f46a07d80dac2d04ef66baedb726cda476 (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
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

EAPI=6
PYTHON_COMPAT=( python2_7 python{3_4,3_5} )

inherit distutils-r1

DESCRIPTION="Metakernel for Jupyter"
HOMEPAGE="https://github.com/Calysto/metakernel"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
KEYWORDS="~amd64"

LICENSE="BSD"
SLOT="0"
IUSE="test"

RDEPEND="
	>=dev-python/ipython-3.0[${PYTHON_USEDEP}]
	"
DEPEND="${RDEPEND}
	test? (
		dev-python/nose[${PYTHON_USEDEP}]
		dev-python/coverage[${PYTHON_USEDEP}]
		>=dev-python/metakernel_python-0.11.3[${PYTHON_USEDEP}]
	)
"

# tests currently fail and the dying/stopping of ipcluster needs to be fixed
RESTRICT="test"

python_test() {
	ipcluster start -n=3 &
	nosetests --with-doctest --with-coverage --cover-package metakernel || die
	ipcluster stop
}