python312Packages.fnllm: 0.0.11 -> 0.0.12 (#364582)
[NixPkgs.git] / pkgs / development / python-modules / jupyter-highlight-selected-word / default.nix
blobc9d84b130fdd278d60f98439f41a133d2d53c9df
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5 }:
7 buildPythonPackage rec {
8   pname = "jupyter-highlight-selected-word";
9   version = "0.2.0";
10   format = "setuptools";
12   src = fetchFromGitHub {
13     owner = "jcb91";
14     repo = "jupyter_highlight_selected_word";
15     rev = "refs/tags/${version}";
16     hash = "sha256-KgM//SIfES46uZySwNR4ZOcolnJORltvThsmEvxXoIs=";
17   };
19   # This package does not have tests
20   doChecks = false;
22   pythonImportsCheck = [ "jupyter_highlight_selected_word" ];
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   };