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-08-27 11:46:31 +0000
committerJon <jonringer@users.noreply.github.com>2020-08-27 13:35:54 -0700
commit119a9d2caa3f06ea76d76b2927f871153168c3ed (patch)
treec7d9bcb2ed24ad7e22eff5b475579d1b4297e087 /pkgs/development/python-modules/breathe
parent0cff30bb44063c627dd033ccca8155ace853d4d9 (diff)
downloadnixpkgs-119a9d2caa3f06ea76d76b2927f871153168c3ed.tar
nixpkgs-119a9d2caa3f06ea76d76b2927f871153168c3ed.tar.gz
nixpkgs-119a9d2caa3f06ea76d76b2927f871153168c3ed.tar.bz2
nixpkgs-119a9d2caa3f06ea76d76b2927f871153168c3ed.tar.lz
nixpkgs-119a9d2caa3f06ea76d76b2927f871153168c3ed.tar.xz
nixpkgs-119a9d2caa3f06ea76d76b2927f871153168c3ed.tar.zst
nixpkgs-119a9d2caa3f06ea76d76b2927f871153168c3ed.zip
python37Packages.breathe: 4.19.2 -> 4.20.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 d6fd70031aa..5afb3bfffcf 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.19.2";
+  version = "4.20.0";
   pname = "breathe";
   disabled = isPy27;
 
   src = fetchPypi {
     inherit pname version;
-    sha256 = "1mzcggfr61lqkn6sghg842ah9slfjr0ikc776vbx60iqqw9l1gvn";
+    sha256 = "d7e1e1ee9b0615423b7e9abc64f0afe12e7bcf32c817a8fd1d9c8c3c4b3d71c9";
   };
 
   propagatedBuildInputs = [ docutils six sphinx ];