python311Packages.breathe: fix sphinx 7.2 support

This commit is contained in:
Martin Weinelt 2023-10-27 12:18:30 +02:00
parent f20daab04b
commit 6515b811b8
No known key found for this signature in database
GPG Key ID: 87C1E9888F856759

View File

@ -2,6 +2,7 @@
, buildPythonPackage
, docutils
, fetchFromGitHub
, fetchpatch
, pytestCheckHook
, pythonOlder
, sphinx
@ -21,6 +22,15 @@ buildPythonPackage rec {
hash = "sha256-LJXvtScyWRL8zfj877bJ4xuIbLV9IN3Sn9KPUTLMjMI=";
};
patches = [
(fetchpatch {
# sphinx 7.2 support https://github.com/breathe-doc/breathe/pull/956
name = "breathe-sphinx7.2-support.patch";
url = "https://github.com/breathe-doc/breathe/commit/46abd77157a2a57e81586e4f8765ae8f1a09d167.patch";
hash = "sha256-zGFO/Ndk/9Yv2dbo8fpEoB/vchZP5vRceoC1E3sUny8=";
})
];
propagatedBuildInputs = [
docutils
sphinx