python3Packages.sphinx-click: 6.0.0 -> 6.1.0

This commit is contained in:
Anton Mosich
2025-11-28 11:39:51 +01:00
parent 3346f629aa
commit 06e87f31c5
@@ -4,8 +4,8 @@
fetchPypi,
sphinxHook,
# Build system
pbr,
setuptools,
setuptools-scm,
# Dependencies
click,
docutils,
@@ -17,14 +17,22 @@
buildPythonPackage rec {
pname = "sphinx-click";
version = "6.0.0";
version = "6.1.0";
pyproject = true;
build-system = [
pbr
setuptools
setuptools-scm
];
postPatch = ''
# Would require reno which would require the .git directory to stay around
substituteInPlace docs/changelog.rst \
--replace-fail '.. release-notes::' 'Check https://sphinx-click.readthedocs.io/en/latest/changelog/ for the Release Notes.'
substituteInPlace docs/conf.py \
--replace-fail "'reno.sphinxext'" ""
'';
nativeBuildInputs = [
sphinxHook
];
@@ -47,7 +55,7 @@ buildPythonPackage rec {
src = fetchPypi {
inherit version;
pname = "sphinx_click";
hash = "sha256-9dZkMh3AxmIv8Bnx4chOWM4M7P3etRDgBM9gwqOrRls=";
hash = "sha256-xwLgdRwaC2rWSeT3+uvQ3AmjzHyjtQ+Vlpg4N3L1Du8=";
};
meta = {