summary refs log tree commit diff
diff options
context:
space:
mode:
authorBenjamin Hipple <bhipple@protonmail.com>2020-04-10 11:51:24 -0400
committerGitHub <noreply@github.com>2020-04-10 11:51:24 -0400
commit67303ddff6b439ecbf61339600c970740a5cf99a (patch)
treed6a891ecda0be5a1d6ac526b3e5cbe35ab449cdc
parenta4409f710bc9f2de778b2b83f6d66a765b804071 (diff)
parent64eacb2f5eecce5c3835ba1824474eebde71b6f2 (diff)
downloadnixpkgs-67303ddff6b439ecbf61339600c970740a5cf99a.tar
nixpkgs-67303ddff6b439ecbf61339600c970740a5cf99a.tar.gz
nixpkgs-67303ddff6b439ecbf61339600c970740a5cf99a.tar.bz2
nixpkgs-67303ddff6b439ecbf61339600c970740a5cf99a.tar.lz
nixpkgs-67303ddff6b439ecbf61339600c970740a5cf99a.tar.xz
nixpkgs-67303ddff6b439ecbf61339600c970740a5cf99a.tar.zst
nixpkgs-67303ddff6b439ecbf61339600c970740a5cf99a.zip
Merge pull request #84907 from r-ryantm/auto-update/python3.7-breathe
python37Packages.breathe: 4.14.1 -> 4.14.2
-rw-r--r--pkgs/development/python-modules/breathe/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/breathe/default.nix b/pkgs/development/python-modules/breathe/default.nix
index c088199fda7..842c8289f77 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.14.1";
+  version = "4.14.2";
   pname = "breathe";
   disabled = isPy27;
 
   src = fetchPypi {
     inherit pname version;
-    sha256 = "1ia9iq3kk0g8cqcsf03di3cnq295gfixriqfpp9wd38zf2wgq0l1";
+    sha256 = "1vj2yylff07hh4l3sh3srhpnrk1q6pxznvwqzgmbplhn8gf5rimb";
   };
 
   propagatedBuildInputs = [ docutils six sphinx ];
@@ -15,7 +15,7 @@ buildPythonPackage rec {
   doCheck = !isPy3k;
 
   meta = {
-    homepage = https://github.com/michaeljones/breathe;
+    homepage = "https://github.com/michaeljones/breathe";
     license = lib.licenses.bsd3;
     description = "Sphinx Doxygen renderer";
     inherit (sphinx.meta) platforms;