blob: 77065feb0f5e68d75841977da178f8747df86208 (
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
|
{
lib,
buildPythonPackage,
fetchPypi,
hatchling,
ipykernel,
jedi,
jupyter-core,
pexpect,
}:
buildPythonPackage rec {
pname = "metakernel";
version = "0.30.4";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-SIWPiGMNsEcPIkcT0HY4/9QRt1wxPwYxZGLUOjywgug=";
};
build-system = [ hatchling ];
dependencies = [
ipykernel
jedi
jupyter-core
pexpect
];
# Tests hang, so disable
doCheck = false;
pythonImportsCheck = [ "metakernel" ];
meta = {
description = "Jupyter/IPython Kernel Tools";
homepage = "https://github.com/Calysto/metakernel";
changelog = "https://github.com/Calysto/metakernel/blob/v${version}/CHANGELOG.md";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ thomasjm ];
};
}
|