mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-18 02:05:51 +03:00
python311Packages.breathe: fix sphinx 7.2 support
This commit is contained in:
parent
f20daab04b
commit
6515b811b8
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user