depot/third_party/nixpkgs/pkgs/development/python-modules/jupyterlab-lsp/default.nix
Default email 23b612e36f Project import generated by Copybara.
GitOrigin-RevId: ae5c332cbb5827f6b1f02572496b141021de335f
2024-01-25 23:12:00 +09:00

38 lines
752 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, setuptools
, jupyterlab
, jupyter-lsp
}:
buildPythonPackage rec {
pname = "jupyterlab-lsp";
version = "5.0.2";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-JmiGhOkHUPjvikFimgpAUOc26IFVWqFBP7Xah54GNfE=";
};
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; [ ];
};
}