1{ lib, fetchPypi, buildPythonPackage, docutils, six, sphinx, isPy3k }:
2
3buildPythonPackage rec {
4 version = "4.13.0";
5 pname = "breathe";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "08xs1cqpvcv7735j19c35br34gbwzfn89rkg12n2yfz4af0x3xfp";
10 };
11
12 propagatedBuildInputs = [ docutils six sphinx ];
13
14 doCheck = !isPy3k;
15
16 meta = {
17 homepage = https://github.com/michaeljones/breathe;
18 license = lib.licenses.bsd3;
19 description = "Sphinx Doxygen renderer";
20 inherit (sphinx.meta) platforms;
21 };
22}
23