python3Packages.breathe: 4.28.0 -> 4.30.0

This commit is contained in:
Martin Weinelt 2021-06-18 23:47:10 +02:00 committed by Jonathan Ringer
parent c360bbdf88
commit 9b9c0376fc
No known key found for this signature in database
GPG key ID: 5C841D3CFDFEC4E0

View file

@ -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 ];