python310Packages.jupyter-highlight-selected-word: init at 0.2.0

This commit is contained in:
Gaetan Lepage 2023-07-13 09:51:37 +02:00
parent 6eb2c2fddb
commit 0a473faa8d
2 changed files with 27 additions and 0 deletions

View file

@ -0,0 +1,25 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
}:
buildPythonPackage rec {
pname = "jupyter-highlight-selected-word";
version = "0.2.0";
src = fetchFromGitHub {
owner = "jcb91";
repo = "jupyter_highlight_selected_word";
rev = "refs/tags/${version}";
hash = "sha256-KgM//SIfES46uZySwNR4ZOcolnJORltvThsmEvxXoIs=";
};
pythonImportsCheck = [ "jupyter_highlight_selected_word" ];
meta = with lib; {
description = "Jupyter notebook extension that enables highlighting every instance of the current word in the notebook";
homepage = "https://github.com/jcb91/jupyter_highlight_selected_word";
license = licenses.bsd3;
maintainers = with maintainers; [ GaetanLepage ];
};
}

View file

@ -5437,6 +5437,8 @@ self: super: with self; {
jupyter-events = callPackage ../development/python-modules/jupyter-events { };
jupyter-highlight-selected-word = callPackage ../development/python-modules/jupyter-highlight-selected-word { };
jupyter-lsp = callPackage ../development/python-modules/jupyter-lsp { };
jupyter-nbextensions-configurator = callPackage ../development/python-modules/jupyter-nbextensions-configurator { };