c7cb07f092
GitOrigin-RevId: 1536926ef5621b09bba54035ae2bb6d806d72ac8
38 lines
752 B
Nix
38 lines
752 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, setuptools
|
|
, jupyterlab
|
|
, jupyter-lsp
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "jupyterlab-lsp";
|
|
version = "5.0.3";
|
|
pyproject = true;
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-qcijpkZJS+SE1+MXSrHSQV7WD0dzzshHmqW6N+XwS8k=";
|
|
};
|
|
|
|
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 = with maintainers; [ ];
|
|
};
|
|
}
|