forked from mirrors/nixpkgs
jupyterlab-lsp: init at 3.10.0
This commit is contained in:
parent
1abbb78926
commit
a4c46b5318
33
pkgs/development/python-modules/jupyterlab-lsp/default.nix
Normal file
33
pkgs/development/python-modules/jupyterlab-lsp/default.nix
Normal file
|
@ -0,0 +1,33 @@
|
||||||
|
{ stdenv
|
||||||
|
, lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
, jupyterlab
|
||||||
|
, jupyter-lsp
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "jupyterlab-lsp";
|
||||||
|
version = "3.10.0";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "sha256-8/ZGTIwpFuPiYVGZZLF+1Gc8aJcWc3BirtXdahYKwt8=";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
jupyterlab
|
||||||
|
jupyter-lsp
|
||||||
|
];
|
||||||
|
# No tests
|
||||||
|
doCheck = false;
|
||||||
|
pythonImportsCheck = [ "jupyterlab_lsp" ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Language Server Protocol integration for Jupyter(Lab)";
|
||||||
|
homepage = "https://github.com/jupyter-lsp/jupyterlab-lsp";
|
||||||
|
license = licenses.bsd3;
|
||||||
|
platforms = platforms.all;
|
||||||
|
maintainers = with maintainers; [ doronbehar ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -4364,6 +4364,8 @@ in {
|
||||||
|
|
||||||
jupyterlab-widgets = callPackage ../development/python-modules/jupyterlab-widgets { };
|
jupyterlab-widgets = callPackage ../development/python-modules/jupyterlab-widgets { };
|
||||||
|
|
||||||
|
jupyterlab-lsp = callPackage ../development/python-modules/jupyterlab-lsp { };
|
||||||
|
|
||||||
jupyter-packaging = callPackage ../development/python-modules/jupyter-packaging { };
|
jupyter-packaging = callPackage ../development/python-modules/jupyter-packaging { };
|
||||||
|
|
||||||
jupyter-repo2docker = callPackage ../development/python-modules/jupyter-repo2docker {
|
jupyter-repo2docker = callPackage ../development/python-modules/jupyter-repo2docker {
|
||||||
|
|
Loading…
Reference in a new issue