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