504525a148
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
33 lines
721 B
Nix
33 lines
721 B
Nix
{ stdenv
|
|
, lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, jupyter-server
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "jupyter-lsp";
|
|
version = "2.2.0";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-jrvLUzrbQeXWNeuP6ClWsKr78P1EO2xL+pBu3uuGNaE=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
jupyter-server
|
|
];
|
|
# tests require network
|
|
doCheck = false;
|
|
pythonImportsCheck = [ "jupyter_lsp" ];
|
|
|
|
meta = with lib; {
|
|
description = "Multi-Language Server WebSocket proxy for your Jupyter notebook or lab server";
|
|
homepage = "https://jupyterlab-lsp.readthedocs.io/en/latest/";
|
|
license = licenses.bsd3;
|
|
platforms = platforms.all;
|
|
maintainers = with maintainers; [ ];
|
|
};
|
|
}
|
|
|