Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / jupyter-highlight-selected-word / default.nix
blob06d7247ed3489718f47c3f16f7616953a200b71a
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 }:
6 buildPythonPackage rec {
7   pname = "jupyter-highlight-selected-word";
8   version = "0.2.0";
9   format = "setuptools";
11   src = fetchFromGitHub {
12     owner = "jcb91";
13     repo = "jupyter_highlight_selected_word";
14     rev = "refs/tags/${version}";
15     hash = "sha256-KgM//SIfES46uZySwNR4ZOcolnJORltvThsmEvxXoIs=";
16   };
18   # This package does not have tests
19   doChecks = false;
21   pythonImportsCheck = [ "jupyter_highlight_selected_word" ];
23   meta = with lib; {
24     description = "Jupyter notebook extension that enables highlighting every instance of the current word in the notebook";
25     homepage = "https://github.com/jcb91/jupyter_highlight_selected_word";
26     license = licenses.bsd3;
27     maintainers = with maintainers; [ GaetanLepage ];
28   };