mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-22 04:45:39 +00:00
python310Packages.jupyter-highlight-selected-word: init at 0.2.0
This commit is contained in:
parent
6eb2c2fddb
commit
0a473faa8d
@ -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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user