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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
|
{
lib,
buildPythonPackage,
fetchPypi,
hatchling,
babel,
jinja2,
json5,
jsonschema,
jupyter-server,
packaging,
requests,
openapi-core,
pytest-jupyter,
pytestCheckHook,
requests-mock,
ruamel-yaml,
strict-rfc3339,
}:
buildPythonPackage rec {
pname = "jupyterlab-server";
version = "2.28.0";
pyproject = true;
src = fetchPypi {
pname = "jupyterlab_server";
inherit version;
hash = "sha256-NbqoGJixX5NXPi3spQ0RrArkB+u2iCmdOlITJlAzcSw=";
};
postPatch = ''
sed -i "/timeout/d" pyproject.toml
'';
build-system = [ hatchling ];
dependencies = [
babel
jinja2
json5
jsonschema
jupyter-server
packaging
requests
];
optional-dependencies = {
openapi = [
openapi-core
ruamel-yaml
];
};
nativeCheckInputs = [
pytest-jupyter
pytestCheckHook
requests-mock
strict-rfc3339
]
++ optional-dependencies.openapi;
preCheck = ''
export HOME=$(mktemp -d)
'';
pytestFlags = [
"-Wignore::DeprecationWarning"
];
disabledTestPaths = [
# require optional language pack packages for tests
"tests/test_translation_api.py"
];
pythonImportsCheck = [
"jupyterlab_server"
];
__darwinAllowLocalNetworking = true;
meta = {
description = "Set of server components for JupyterLab and JupyterLab like applications";
homepage = "https://github.com/jupyterlab/jupyterlab_server";
changelog = "https://github.com/jupyterlab/jupyterlab_server/blob/v${version}/CHANGELOG.md";
license = lib.licenses.bsd3;
teams = [ lib.teams.jupyter ];
};
}
|