8 , pytest-console-scripts
31 buildPythonPackage rec {
32 pname = "jupyter_server";
34 disabled = pythonOlder "3.7";
37 inherit pname version;
38 sha256 = "sha256-0cw1lpRYSXQrw+7fBpn+61CtbGBF6+8CqSmLfxPCfp8=";
41 propagatedBuildInputs = [
64 pytest-console-scripts
71 export HOME=$(mktemp -d)
72 export PATH=$out/bin:$PATH
77 ] ++ lib.optionals stdenv.isDarwin [
78 # attempts to use trashcan, build env doesn't allow this
80 # test is presumable broken in sandbox
81 "test_authorized_requests"
85 "tests/services/kernels/test_api.py"
86 "tests/services/sessions/test_api.py"
87 # nbconvert failed: `relax_add_props` kwargs of validate has been
88 # deprecated for security reasons, and will be removed soon.
89 "tests/nbconvert/test_handlers.py"
92 __darwinAllowLocalNetworking = true;
95 description = "The backend—i.e. core services, APIs, and REST endpoints—to Jupyter web applications";
96 homepage = "https://github.com/jupyter-server/jupyter_server";
97 license = licenses.bsdOriginal;
98 maintainers = [ maintainers.elohmeier ];