python3Packages.jupyterlab-vim: init at 4.1.4 (#383891)

This commit is contained in:
Arne Keller
2025-10-07 09:05:51 +00:00
committed by GitHub
3 changed files with 49 additions and 0 deletions
+6
View File
@@ -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 ];
};
}
+2
View File
@@ -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 { };