python3Packages.jupyterlab-vim: init at 4.1.4 (#383891)
This commit is contained in:
@@ -15889,6 +15889,12 @@
|
||||
githubId = 33522919;
|
||||
name = "Marshall Arruda";
|
||||
};
|
||||
mart-mihkel = {
|
||||
email = "mart.mihkel.aun@gmail.com";
|
||||
github = "mart-mihkel";
|
||||
githubId = 73405010;
|
||||
name = "Mart-Mihkel Aun";
|
||||
};
|
||||
martijnvermaat = {
|
||||
email = "martijn@vermaat.name";
|
||||
github = "martijnvermaat";
|
||||
|
||||
@@ -0,0 +1,41 @@
|
||||
{
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchPypi,
|
||||
hatchling,
|
||||
hatch-jupyter-builder,
|
||||
hatch-nodejs-version,
|
||||
jupyterlab,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "jupyterlab-vim";
|
||||
version = "4.1.4";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchPypi {
|
||||
pname = "jupyterlab_vim";
|
||||
inherit version;
|
||||
hash = "sha256-q/KJGq+zLwy5StmDIa5+vL4Mq+Uj042A1WnApQuFIlo=";
|
||||
};
|
||||
|
||||
build-system = [
|
||||
hatchling
|
||||
hatch-jupyter-builder
|
||||
hatch-nodejs-version
|
||||
];
|
||||
|
||||
dependencies = [ jupyterlab ];
|
||||
pythonImportsCheck = [ "jupyterlab_vim" ];
|
||||
|
||||
# has no tests
|
||||
doCheck = false;
|
||||
|
||||
meta = with lib; {
|
||||
description = "Vim notebook cell bindings for JupyterLab";
|
||||
homepage = "https://github.com/jupyterlab-contrib/jupyterlab-vim";
|
||||
license = licenses.mit;
|
||||
platforms = platforms.all;
|
||||
maintainers = with maintainers; [ mart-mihkel ];
|
||||
};
|
||||
}
|
||||
@@ -7701,6 +7701,8 @@ self: super: with self; {
|
||||
|
||||
jupyterlab-server = callPackage ../development/python-modules/jupyterlab-server { };
|
||||
|
||||
jupyterlab-vim = callPackage ../development/python-modules/jupyterlab-vim { };
|
||||
|
||||
jupyterlab-widgets = callPackage ../development/python-modules/jupyterlab-widgets { };
|
||||
|
||||
jupytext = callPackage ../development/python-modules/jupytext { };
|
||||
|
||||
Reference in New Issue
Block a user