about summary refs log tree commit diff
path: root/pkgs/development/python-modules/breathe
diff options
context:
space:
mode:
authorR. RyanTM <ryantm-bot@ryantm.com>2021-02-18 00:54:41 +0000
committerFrederik Rietdijk <freddyrietdijk@fridh.nl>2021-02-20 17:32:58 +0100
commit6d771e5330157de230a8431577edb20a8733112b (patch)
treee30d3e2422cff32866f7581768e72635c37cf40b /pkgs/development/python-modules/breathe
parent1215e25b9972d4a0313e99c18baa0ca6c15ec8b5 (diff)
python37Packages.breathe: 4.26.1 -> 4.27.0
Diffstat (limited to 'pkgs/development/python-modules/breathe')
-rw-r--r--pkgs/development/python-modules/breathe/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/breathe/default.nix b/pkgs/development/python-modules/breathe/default.nix
index 29de26ac495ef..be51e87c95c65 100644
--- a/pkgs/development/python-modules/breathe/default.nix
+++ b/pkgs/development/python-modules/breathe/default.nix
@@ -1,13 +1,13 @@
 { lib, fetchPypi, buildPythonPackage, docutils, six, sphinx, isPy3k, isPy27 }:
 
 buildPythonPackage rec {
-  version = "4.26.1";
+  version = "4.27.0";
   pname = "breathe";
   disabled = isPy27;
 
   src = fetchPypi {
     inherit pname version;
-    sha256 = "f59ecadebbb76e3b4710e8c9d2f8f98d51e54701930a38ddf732930653dcf6b5";
+    sha256 = "5b21f86d0cc99d3168f0d9730e07c1438057083ccc9a9c54de322e59e1f4e740";
   };
 
   propagatedBuildInputs = [ docutils six sphinx ];