2019-12-22 15:32:29 -08:00
|
|
|
{ lib, fetchPypi, buildPythonPackage, docutils, six, sphinx, isPy3k, isPy27 }:
|
2016-07-08 05:54:44 -07:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2019-12-19 11:31:07 -08:00
|
|
|
version = "4.14.0";
|
2017-05-27 02:25:35 -07:00
|
|
|
pname = "breathe";
|
2019-12-22 15:32:29 -08:00
|
|
|
disabled = isPy27;
|
2016-07-08 05:54:44 -07:00
|
|
|
|
2018-06-23 06:27:58 -07:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-12-19 11:31:07 -08:00
|
|
|
sha256 = "178848e4088faf8c2c60f000379fcabfb3411b260e0fbddc08fb57e0e5caea08";
|
2016-07-08 05:54:44 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ docutils six sphinx ];
|
|
|
|
|
2017-08-17 05:22:25 -07:00
|
|
|
doCheck = !isPy3k;
|
2016-09-25 13:02:28 -07:00
|
|
|
|
2016-07-08 05:54:44 -07:00
|
|
|
meta = {
|
|
|
|
homepage = https://github.com/michaeljones/breathe;
|
|
|
|
license = lib.licenses.bsd3;
|
|
|
|
description = "Sphinx Doxygen renderer";
|
|
|
|
inherit (sphinx.meta) platforms;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|