summary refs log tree commit diff
path: root/pkgs/development/python-modules/breathe
diff options
context:
space:
mode:
authorR. RyanTM <ryantm-bot@ryantm.com>2020-09-29 07:08:39 +0000
committerJon <jonringer@users.noreply.github.com>2020-09-29 05:59:17 -0700
commit7d493ac122865ef1129f9806963cc382911b1a84 (patch)
treede74b1306fc066195c0d0941bca3af0e5bb7a96c /pkgs/development/python-modules/breathe
parente7494514708cb4962c7ea5c7eefe032150ab3544 (diff)
downloadnixpkgs-7d493ac122865ef1129f9806963cc382911b1a84.tar
nixpkgs-7d493ac122865ef1129f9806963cc382911b1a84.tar.gz
nixpkgs-7d493ac122865ef1129f9806963cc382911b1a84.tar.bz2
nixpkgs-7d493ac122865ef1129f9806963cc382911b1a84.tar.lz
nixpkgs-7d493ac122865ef1129f9806963cc382911b1a84.tar.xz
nixpkgs-7d493ac122865ef1129f9806963cc382911b1a84.tar.zst
nixpkgs-7d493ac122865ef1129f9806963cc382911b1a84.zip
python37Packages.breathe: 4.20.0 -> 4.22.1
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 5afb3bfffcf..fe7a2a713cf 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.20.0";
+  version = "4.22.1";
   pname = "breathe";
   disabled = isPy27;
 
   src = fetchPypi {
     inherit pname version;
-    sha256 = "d7e1e1ee9b0615423b7e9abc64f0afe12e7bcf32c817a8fd1d9c8c3c4b3d71c9";
+    sha256 = "6e4b66e61876dac90e78b335788a38eaa3625ed9c70d0add261f98ddd128d36a";
   };
 
   propagatedBuildInputs = [ docutils six sphinx ];