Files
nixpkgs/pkgs/development/python-modules/notebook-shim/default.nix
T
Ihar Hrachyshka 567e8dfd8e treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00

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 = {
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 = lib.licenses.bsd3;
maintainers = [ ];
};
}