{ lib , buildPythonPackage , fetchPypi , jupyterlab , jupyter-lsp }: buildPythonPackage rec { pname = "jupyterlab-lsp"; version = "5.0.0"; format = "setuptools"; src = fetchPypi { inherit pname version; hash = "sha256-D4jiaAPQ8+TIyL7wip+GHycGp3ym1NkvZQJsCelYFks="; }; 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 = with maintainers; [ ]; }; }