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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
replaceVars,
bashInteractive,
flit-core,
filetype,
ipykernel,
pexpect,
writableTmpDirAsHomeHook,
python,
}:
buildPythonPackage rec {
pname = "bash-kernel";
version = "0.10.0";
pyproject = true;
src = fetchFromGitHub {
owner = "takluyver";
repo = "bash_kernel";
tag = version;
hash = "sha256-ugFMcQx1B1nKoO9rhb6PMllRcoZi0O4B9um8dOu5DU4=";
};
patches = [
(replaceVars ./bash-path.patch {
bash = lib.getExe bashInteractive;
})
];
build-system = [ flit-core ];
dependencies = [
filetype
ipykernel
pexpect
];
nativeBuildInputs = [
writableTmpDirAsHomeHook
];
postInstall = ''
${python.pythonOnBuildForHost.interpreter} -m bash_kernel.install --prefix $out
'';
checkPhase = ''
runHook preCheck
# Create a JUPYTER_PATH with the kernelspec
export JUPYTER_PATH=$(mktemp -d)
mkdir -p $JUPYTER_PATH/kernels/bash
echo '{ "language": "bash", "argv": [ "${python}/bin/python", "-m", "bash_kernel", "-f", "{connection_file}" ] }' > $JUPYTER_PATH/kernels/bash/kernel.json
# Evaluate a test notebook with papermill
cd $(mktemp -d)
${python.withPackages (ps: [ ps.papermill ])}/bin/papermill --kernel bash ${./test.ipynb} out.ipynb
runHook postCheck
'';
__darwinAllowLocalNetworking = true;
meta = {
description = "Bash Kernel for Jupyter";
homepage = "https://github.com/takluyver/bash_kernel";
changelog = "https://github.com/takluyver/bash_kernel/releases/tag/${version}";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ zimbatm ];
};
}
|