b450903751
GitOrigin-RevId: 74a1793c659d09d7cf738005308b1f86c90cb59b
32 lines
688 B
Nix
32 lines
688 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, jupyterlab
|
|
, jupyter-lsp
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "jupyterlab-lsp";
|
|
version = "3.10.2";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "sha256-VZrUaS+X9C3WufCzMKuScD8CuORbuvbpz1mJiolyIqA=";
|
|
};
|
|
|
|
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; [ doronbehar ];
|
|
};
|
|
}
|