summary refs log tree commit diff
diff options
context:
space:
mode:
authorMartin Weinelt <mweinelt@users.noreply.github.com>2023-01-07 23:28:11 +0000
committerGitHub <noreply@github.com>2023-01-07 23:28:11 +0000
commit533c68a3300039a131c67579aaf07946c22abfa0 (patch)
tree293ae98b5a0d917d8b262b651b3253ea9c6c775f
parent3b3114f45d142b4265844abe0824b0c280bfbb5d (diff)
parent63e977acd181070881268b71828c736122173c91 (diff)
downloadnixpkgs-533c68a3300039a131c67579aaf07946c22abfa0.tar
nixpkgs-533c68a3300039a131c67579aaf07946c22abfa0.tar.gz
nixpkgs-533c68a3300039a131c67579aaf07946c22abfa0.tar.bz2
nixpkgs-533c68a3300039a131c67579aaf07946c22abfa0.tar.lz
nixpkgs-533c68a3300039a131c67579aaf07946c22abfa0.tar.xz
nixpkgs-533c68a3300039a131c67579aaf07946c22abfa0.tar.zst
nixpkgs-533c68a3300039a131c67579aaf07946c22abfa0.zip
Merge pull request #209570 from LibreCybernetics/fix-breathe
-rw-r--r--pkgs/development/python-modules/breathe/default.nix8
1 files changed, 8 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/breathe/default.nix b/pkgs/development/python-modules/breathe/default.nix
index a53af25bd88..9c763e22c69 100644
--- a/pkgs/development/python-modules/breathe/default.nix
+++ b/pkgs/development/python-modules/breathe/default.nix
@@ -2,6 +2,7 @@
 , buildPythonPackage
 , docutils
 , fetchFromGitHub
+, fetchpatch
 , pytestCheckHook
 , pythonOlder
 , sphinx
@@ -21,6 +22,13 @@ buildPythonPackage rec {
     hash = "sha256-OOc3XQjqQa0cVpA+/HHco+koL+0whUm5qC7x3xiEdwQ=";
   };
 
+  patches = [
+    (fetchpatch {
+      url = "https://github.com/breathe-doc/breathe/commit/de3504c81c7cefc87c8229743f93232ca00a685d.patch";
+      hash = "sha256-UGld5j0F/hnTuS7KUFvgQL52xCUdaJ3/NeuEuHhpCxI=";
+    })
+  ];
+
   propagatedBuildInputs = [
     docutils
     sphinx