blob: eb9bac773892415658e1104b288c3f9831a687d7 (
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
45
|
{
lib,
buildPythonPackage,
fetchPypi,
jupyter-console,
jupyter-core,
pygments,
setuptools,
termcolor,
txzmq,
}:
buildPythonPackage rec {
pname = "ilua";
version = "0.2.1";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-YxV6xC7GS5NXyMPRZN9YIJxamgP2etwrZUAZjk5PjtU=";
};
nativeBuildInputs = [ setuptools ];
propagatedBuildInputs = [
jupyter-console
jupyter-core
pygments
termcolor
txzmq
];
# No tests found
doCheck = false;
pythonImportsCheck = [ "ilua" ];
meta = {
description = "Portable Lua kernel for Jupyter";
mainProgram = "ilua";
homepage = "https://github.com/guysv/ilua";
license = lib.licenses.gpl2Only;
maintainers = [ ];
};
}
|