blob: e32a4f76984ddb42e4e76b32f42b22899a130c71 (
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
|
# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{12..14} )
DISTUTILS_USE_PEP517=hatchling
inherit distutils-r1 virtualx pypi
DESCRIPTION="Jupyter kernel for octave"
HOMEPAGE="
https://github.com/Calysto/octave_kernel/
https://pypi.org/project/octave-kernel/
"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~x86"
RDEPEND="
>=dev-python/ipykernel-6.22.0[${PYTHON_USEDEP}]
>=dev-python/jupyter-client-8.1.0[${PYTHON_USEDEP}]
>=dev-python/metakernel-1.0[${PYTHON_USEDEP}]
sci-mathematics/octave
"
DEPEND="${RDEPEND}"
BDEPEND="
test? (
dev-python/jupyter-kernel-test[${PYTHON_USEDEP}]
dev-python/nbconvert[${PYTHON_USEDEP}]
)
"
EPYTEST_PLUGINS=()
distutils_enable_tests pytest
src_test() {
virtx distutils-r1_src_test
}
|