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