Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / jupyterlab-lsp / default.nix
blob6d57bc519646acd416fc46de89bf5c51e5777bfc
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , jupyterlab
5 , jupyter-lsp
6 }:
8 buildPythonPackage rec {
9   pname = "jupyterlab-lsp";
10   version = "5.0.0";
12   src = fetchPypi {
13     inherit pname version;
14     hash = "sha256-D4jiaAPQ8+TIyL7wip+GHycGp3ym1NkvZQJsCelYFks=";
15   };
17   propagatedBuildInputs = [
18     jupyterlab
19     jupyter-lsp
20   ];
21   # No tests
22   doCheck = false;
23   pythonImportsCheck = [ "jupyterlab_lsp" ];
25   meta = with lib; {
26     description = "Language Server Protocol integration for Jupyter(Lab)";
27     homepage = "https://github.com/jupyter-lsp/jupyterlab-lsp";
28     license = licenses.bsd3;
29     platforms = platforms.all;
30     maintainers = with maintainers; [ ];
31   };