summary refs log tree commit diff
path: root/pkgs/development/python-modules/breathe
diff options
context:
space:
mode:
authorMartin Weinelt <hexa@darmstadt.ccc.de>2021-06-18 23:47:10 +0200
committerJonathan Ringer <jonringer117@gmail.com>2021-06-21 16:59:59 -0700
commit9b9c0376fc3f271dc952d94667a03498fe303278 (patch)
tree55301f73c9beb817a81d76c5b8468f4b876b8576 /pkgs/development/python-modules/breathe
parentc360bbdf88b6d63c7b9d7291b24bf61ce08dc613 (diff)
downloadnixpkgs-9b9c0376fc3f271dc952d94667a03498fe303278.tar
nixpkgs-9b9c0376fc3f271dc952d94667a03498fe303278.tar.gz
nixpkgs-9b9c0376fc3f271dc952d94667a03498fe303278.tar.bz2
nixpkgs-9b9c0376fc3f271dc952d94667a03498fe303278.tar.lz
nixpkgs-9b9c0376fc3f271dc952d94667a03498fe303278.tar.xz
nixpkgs-9b9c0376fc3f271dc952d94667a03498fe303278.tar.zst
nixpkgs-9b9c0376fc3f271dc952d94667a03498fe303278.zip
python3Packages.breathe: 4.28.0 -> 4.30.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 1ca33222ef5..d863d946399 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.28.0";
+  version = "4.30.0";
   pname = "breathe";
   disabled = isPy27;
 
   src = fetchPypi {
     inherit pname version;
-    sha256 = "11e35a5fed7545554be51b70eea4578643d8c08972bea43774f413943006b17a";
+    sha256 = "363dec85abc0c4b3f22628b0cf82cc2dc46c4397d8a18312d1a7d1365d49b014";
   };
 
   propagatedBuildInputs = [ docutils six sphinx ];