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