7 buildPythonPackage rec {
8 pname = "jupyter-highlight-selected-word";
10 format = "setuptools";
12 src = fetchFromGitHub {
14 repo = "jupyter_highlight_selected_word";
15 rev = "refs/tags/${version}";
16 hash = "sha256-KgM//SIfES46uZySwNR4ZOcolnJORltvThsmEvxXoIs=";
19 # This package does not have tests
22 pythonImportsCheck = [ "jupyter_highlight_selected_word" ];
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 ];