Commit 0a473faa authored by Gaetan Lepage's avatar Gaetan Lepage
Browse files

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

parent 6eb2c2fd
Loading
Loading
Loading
Loading
+25 −0
Original line number Diff line number Diff line
{ 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 ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -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 { };