5 , pythonImportsCheckHook
6 # documentation build dependencies
12 , sphinx-version-warning
14 , sphinxcontrib-bibtex
16 # runtime dependencies
18 , sphinxcontrib-jquery
21 buildPythonPackage rec {
22 pname = "sphinx-hoverxref";
25 outputs = [ "out" "doc" ];
27 src = fetchFromGitHub {
28 owner = "readthedocs";
29 repo = "sphinx-hoverxref";
31 hash = "sha256-DJ+mHu9IeEYEyf/SD+nDNtWpTf6z7tQzG0ogaECDpkU=";
36 pythonImportsCheckHook
43 sphinx-version-warning
49 propagatedBuildInputs = [ sphinx sphinxcontrib-jquery ];
51 pythonImportsCheck = [ "hoverxref" ];
54 description = "A sphinx extension for creating tooltips on the cross references of the documentation";
56 sphinx-hoverxref is a Sphinx extension to show a floating window
57 (tooltips or modal dialogues) on the cross references of the
58 documentation embedding the content of the linked section on them.
60 With sphinx-hoverxref, you don’t need to click a link to see what’s
63 homepage = "https://github.com/readthedocs/sphinx-hoverxref";
64 license = licenses.mit;
65 maintainers = with maintainers; [ kaction ];