nixpkgs/pkgs/development/python-modules/sphinx-hoverxref/default.nix
Winter a19cd4ffb1 Revert "treewide: replace rev with tag"
This reverts commit 65a333600d.

This wasn't tested for correctness with something like fodwatch [0],
and should not have been (self-)merged so quickly, especially without
further review.

It also resulted in the breakage of at least one package [1] (and that's
the one we know of and was caught).

A few packages that were updated in between this commit and this revert
were not reverted back to using `rev`, but other than that, this is a
1:1 revert.

[0]: https://codeberg.org/raphaelr/fodwatch
[1]: https://github.com/NixOS/nixpkgs/pull/396904 / 758551e458
2025-04-08 02:57:25 -04:00

72 lines
1.6 KiB
Nix
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{
lib,
buildPythonPackage,
fetchFromGitHub,
flit-core,
# documentation build dependencies
sphinxHook,
sphinx-notfound-page,
sphinx-prompt,
sphinx-rtd-theme,
sphinx-tabs,
sphinx-version-warning,
sphinx-autoapi,
sphinxcontrib-bibtex,
sphinxemoji,
# runtime dependencies
sphinx,
sphinxcontrib-jquery,
}:
buildPythonPackage rec {
pname = "sphinx-hoverxref";
version = "1.3.0";
format = "pyproject";
outputs = [
"out"
"doc"
];
src = fetchFromGitHub {
owner = "readthedocs";
repo = "sphinx-hoverxref";
rev = version;
hash = "sha256-DJ+mHu9IeEYEyf/SD+nDNtWpTf6z7tQzG0ogaECDpkU=";
};
nativeBuildInputs = [
flit-core
sphinxHook
sphinx-notfound-page
sphinx-prompt
sphinx-rtd-theme
sphinx-tabs
sphinx-version-warning
sphinx-autoapi
sphinxcontrib-bibtex
sphinxemoji
];
propagatedBuildInputs = [
sphinx
sphinxcontrib-jquery
];
pythonImportsCheck = [ "hoverxref" ];
meta = with lib; {
description = "Sphinx extension for creating tooltips on the cross references of the documentation";
longDescription = ''
sphinx-hoverxref is a Sphinx extension to show a floating window
(tooltips or modal dialogues) on the cross references of the
documentation embedding the content of the linked section on them.
With sphinx-hoverxref, you dont need to click a link to see whats
in there.
'';
homepage = "https://github.com/readthedocs/sphinx-hoverxref";
license = licenses.mit;
maintainers = with maintainers; [ kaction ];
};
}