depot/third_party/nixpkgs/pkgs/development/python-modules/jupyter-lsp/default.nix
Default email 410b979fe2 Project import generated by Copybara.
GitOrigin-RevId: a64e169e396460d6b5763a1de1dd197df8421688
2023-03-24 01:07:29 +01:00

32 lines
696 B
Nix

{ stdenv
, lib
, buildPythonPackage
, fetchPypi
, jupyter-server
}:
buildPythonPackage rec {
pname = "jupyter-lsp";
version = "2.0.0";
src = fetchPypi {
inherit pname version;
hash = "sha256-89n1mdSOCTpLq/vawZTDAzLmJIzkoD1z+nEviMd55Rk=";
};
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; [ ];
};
}