1{
2 lib,
3 buildPythonPackage,
4 fetchFromGitHub,
5}:
6
7buildPythonPackage rec {
8 pname = "jupyter-highlight-selected-word";
9 version = "0.2.0";
10 format = "setuptools";
11
12 src = fetchFromGitHub {
13 owner = "jcb91";
14 repo = "jupyter_highlight_selected_word";
15 tag = version;
16 hash = "sha256-KgM//SIfES46uZySwNR4ZOcolnJORltvThsmEvxXoIs=";
17 };
18
19 # This package does not have tests
20 doChecks = false;
21
22 pythonImportsCheck = [ "jupyter_highlight_selected_word" ];
23
24 meta = with lib; {
25 description = "Jupyter notebook extension that enables highlighting every instance of the current word in the notebook";
26 homepage = "https://github.com/jcb91/jupyter_highlight_selected_word";
27 license = licenses.bsd3;
28 maintainers = with maintainers; [ GaetanLepage ];
29 };
30}