python3Packages.sphinx-hoverxref: 1.3.0 -> 1.5.0

R. Ryantm a5c0180f d8f8b0d1

Changed files
+14 -11
pkgs
development
python-modules
sphinx-hoverxref
+14 -11
pkgs/development/python-modules/sphinx-hoverxref/default.nix
···
buildPythonPackage rec {
pname = "sphinx-hoverxref";
-
version = "1.3.0";
-
format = "pyproject";
+
version = "1.5.0";
+
pyproject = true;
+
outputs = [
"out"
"doc"
···
owner = "readthedocs";
repo = "sphinx-hoverxref";
rev = version;
-
hash = "sha256-DJ+mHu9IeEYEyf/SD+nDNtWpTf6z7tQzG0ogaECDpkU=";
+
hash = "sha256-JHNJGUkO/HXnnnROYBd1pAcoAEYo6b7eK4tyC+ujc+A=";
};
postPatch = ''
substituteInPlace docs/conf.py --replace-fail "sphinx-prompt" "sphinx_prompt"
'';
-
nativeBuildInputs = [
+
build-system = [
flit-core
+
];
+
nativeBuildInputs = [
sphinxHook
-
sphinx-notfound-page
-
sphinx-prompt
+
sphinx-autoapi
sphinx-rtd-theme
sphinx-tabs
+
sphinx-prompt
sphinx-version-warning
-
sphinx-autoapi
+
sphinx-notfound-page
sphinxcontrib-bibtex
sphinxemoji
];
-
propagatedBuildInputs = [
+
dependencies = [
sphinx
sphinxcontrib-jquery
];
pythonImportsCheck = [ "hoverxref" ];
-
meta = with lib; {
+
meta = {
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
···
in there.
'';
homepage = "https://github.com/readthedocs/sphinx-hoverxref";
-
license = licenses.mit;
-
maintainers = with maintainers; [ kaction ];
+
license = lib.licenses.mit;
+
maintainers = with lib.maintainers; [ kaction ];
};
}