39 lines
760 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
jupyterlab,
jupyter-lsp,
}:
buildPythonPackage rec {
pname = "jupyterlab-lsp";
version = "5.2.0";
pyproject = true;
src = fetchPypi {
pname = "jupyterlab_lsp";
inherit version;
hash = "sha256-Y2hIhbNcHcnYPlS0sGOAyTda19dRopdWSbNXMIyNMLk=";
};
nativeBuildInputs = [ setuptools ];
propagatedBuildInputs = [
jupyterlab
jupyter-lsp
];
# No tests
doCheck = false;
pythonImportsCheck = [ "jupyterlab_lsp" ];
meta = with lib; {
description = "Language Server Protocol integration for Jupyter(Lab)";
homepage = "https://github.com/jupyter-lsp/jupyterlab-lsp";
license = licenses.bsd3;
platforms = platforms.all;
maintainers = [ ];
};
}