nixpkgs/pkgs/development/python-modules/jupyter-lsp/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

33 lines
696 B
Nix
Raw Normal View History

2022-02-26 19:29:00 +01:00
{ stdenv
, lib
, buildPythonPackage
, fetchPypi
, jupyter-server
2022-02-26 19:29:00 +01:00
}:
buildPythonPackage rec {
pname = "jupyter-lsp";
version = "2.0.0";
2022-02-26 19:29:00 +01:00
src = fetchPypi {
inherit pname version;
hash = "sha256-89n1mdSOCTpLq/vawZTDAzLmJIzkoD1z+nEviMd55Rk=";
2022-02-26 19:29:00 +01:00
};
propagatedBuildInputs = [
jupyter-server
2022-02-26 19:29:00 +01:00
];
# 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/";
2022-02-26 19:29:00 +01:00
license = licenses.bsd3;
platforms = platforms.all;
maintainers = with maintainers; [ ];
2022-02-26 19:29:00 +01:00
};
}