9 buildPythonPackage rec {
10 pname = "notebook-shim";
13 src = fetchFromGitHub {
15 repo = "notebook_shim";
17 sha256 = "sha256-5oIYj8SdC4E0N/yFxsmD2p4VkStHvqrVqAwb/htyPm4=";
20 propagatedBuildInputs = [ jupyter_server ];
23 mv notebook_shim/conftest.py notebook_shim/tests
24 cd notebook_shim/tests
27 # TODO: understand & possibly fix why tests fail. On github most testfiles
28 # have been comitted with msgs "wip" though.
36 pythonImportsCheck = [ "notebook_shim" ];
39 description = "Switch frontends to Jupyter Server";
41 This project provides a way for JupyterLab and other frontends to switch
42 to Jupyter Server for their Python Web application backend.
44 homepage = "https://github.com/jupyter/notebook_shim";
45 license = licenses.bsd3;
46 maintainers = with maintainers; [ friedelino ];