1{ lib, fetchurl, buildPythonPackage, docutils, six, sphinx, isPy3k }:
2
3buildPythonPackage rec {
4 version = "4.7.2";
5 pname = "breathe";
6 name = "${pname}-${version}";
7
8 src = fetchurl {
9 url = "mirror://pypi/b/breathe/${name}.tar.gz";
10 sha256 = "dd15efc66d65180e4c994edd15fcb642812ad04ac9c36738b28bf248d7c0be32";
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