2020-04-24 23:36:52 +00:00
|
|
|
{ lib, fetchPypi, buildPythonPackage, docutils, six, sphinx, isPy3k, isPy27 }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2021-01-15 22:18:51 +00:00
|
|
|
version = "4.26.0";
|
2020-04-24 23:36:52 +00:00
|
|
|
pname = "breathe";
|
|
|
|
disabled = isPy27;
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-01-15 22:18:51 +00:00
|
|
|
sha256 = "72543e3ef896b402eec4067c8be2f384570a27421b803ea6980455d7a9859cb1";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ docutils six sphinx ];
|
|
|
|
|
|
|
|
doCheck = !isPy3k;
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = "https://github.com/michaeljones/breathe";
|
|
|
|
license = lib.licenses.bsd3;
|
|
|
|
description = "Sphinx Doxygen renderer";
|
|
|
|
inherit (sphinx.meta) platforms;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|