Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
53 lines
1.2 KiB
Nix
53 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
hatchling,
|
|
jupyter-server,
|
|
pytestCheckHook,
|
|
pytest-tornasync,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "notebook-shim";
|
|
version = "0.2.4";
|
|
format = "pyproject";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jupyter";
|
|
repo = "notebook_shim";
|
|
tag = "v${version}";
|
|
hash = "sha256-CWnXOKE1xvr+a/qWNY6XCTB5+G/fg2O/glgeLzYD+Zc=";
|
|
};
|
|
|
|
nativeBuildInputs = [ hatchling ];
|
|
propagatedBuildInputs = [ jupyter-server ];
|
|
|
|
preCheck = ''
|
|
mv notebook_shim/conftest.py notebook_shim/tests
|
|
cd notebook_shim/tests
|
|
'';
|
|
|
|
# TODO: understand & possibly fix why tests fail. On github most testfiles
|
|
# have been committed with msgs "wip" though.
|
|
doCheck = false;
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
pytest-tornasync
|
|
];
|
|
|
|
pythonImportsCheck = [ "notebook_shim" ];
|
|
|
|
meta = with lib; {
|
|
description = "Switch frontends to Jupyter Server";
|
|
longDescription = ''
|
|
This project provides a way for JupyterLab and other frontends to switch
|
|
to Jupyter Server for their Python Web application backend.
|
|
'';
|
|
homepage = "https://github.com/jupyter/notebook_shim";
|
|
license = licenses.bsd3;
|
|
maintainers = [ ];
|
|
};
|
|
}
|