1{ lib, fetchurl, buildPythonPackage, docutils, six, sphinx }:
2
3buildPythonPackage rec {
4 name = "breathe-${version}";
5 version = "4.2.0";
6
7 src = fetchurl {
8 url = "mirror://pypi/b/breathe/${name}.tar.gz";
9 md5 = "e35f6ce54485663857129370047f6057";
10 };
11
12 propagatedBuildInputs = [ docutils six sphinx ];
13
14 meta = {
15 homepage = https://github.com/michaeljones/breathe;
16 license = lib.licenses.bsd3;
17 description = "Sphinx Doxygen renderer";
18 inherit (sphinx.meta) platforms;
19 };
20}
21