tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
python311Packages.breathe: fix sphinx 7.2 support
Martin Weinelt
2 years ago
6515b811
f20daab0
+10
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
breathe
default.nix
+10
pkgs/development/python-modules/breathe/default.nix
reviewed
···
2
2
, buildPythonPackage
3
3
, docutils
4
4
, fetchFromGitHub
5
5
+
, fetchpatch
5
6
, pytestCheckHook
6
7
, pythonOlder
7
8
, sphinx
···
20
21
rev = "refs/tags/v${version}";
21
22
hash = "sha256-LJXvtScyWRL8zfj877bJ4xuIbLV9IN3Sn9KPUTLMjMI=";
22
23
};
24
24
+
25
25
+
patches = [
26
26
+
(fetchpatch {
27
27
+
# sphinx 7.2 support https://github.com/breathe-doc/breathe/pull/956
28
28
+
name = "breathe-sphinx7.2-support.patch";
29
29
+
url = "https://github.com/breathe-doc/breathe/commit/46abd77157a2a57e81586e4f8765ae8f1a09d167.patch";
30
30
+
hash = "sha256-zGFO/Ndk/9Yv2dbo8fpEoB/vchZP5vRceoC1E3sUny8=";
31
31
+
})
32
32
+
];
23
33
24
34
propagatedBuildInputs = [
25
35
docutils