depot/third_party/nixpkgs/pkgs/development/python-modules/jupyterlab-lsp/default.nix
Default email e7ec2969af Project import generated by Copybara.
GitOrigin-RevId: 9b19f5e77dd906cb52dade0b7bd280339d2a1f3d
2024-01-13 09:15:51 +01:00

38 lines
752 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, setuptools
, jupyterlab
, jupyter-lsp
}:
buildPythonPackage rec {
pname = "jupyterlab-lsp";
version = "5.0.1";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-jQ8mhTfZ+6F9EgDfBWVI6I/I3n2lIlJs+mM0OJ0MKTQ=";
};
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; [ ];
};
}