Unverified Commit ac3a3b9c authored by Arne Keller's avatar Arne Keller Committed by GitHub
Browse files

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

parents 8671da28 f8f7f453
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -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";
+41 −0
Original line number Diff line number Diff line
{
  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 −0
Original line number Diff line number Diff line
@@ -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 { };