evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / python-modules / jupyter-lsp / default.nix
blob54ce115af8dfcfe5b2c52324c5998334ad5fcab5
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   setuptools,
6   jupyter-server,
7 }:
9 buildPythonPackage rec {
10   pname = "jupyter-lsp";
11   version = "2.2.5";
12   pyproject = true;
14   src = fetchPypi {
15     inherit pname version;
16     hash = "sha256-eTFHoFrURvgJ/VPvHNGan1JW/Qota3zpQ6mCy09UUAE=";
17   };
19   nativeBuildInputs = [ setuptools ];
21   propagatedBuildInputs = [ jupyter-server ];
22   # tests require network
23   doCheck = false;
24   pythonImportsCheck = [ "jupyter_lsp" ];
26   meta = with lib; {
27     description = "Multi-Language Server WebSocket proxy for your Jupyter notebook or lab server";
28     homepage = "https://jupyterlab-lsp.readthedocs.io/en/latest/";
29     license = licenses.bsd3;
30     platforms = platforms.all;
31     maintainers = [ ];
32   };