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