2016-09-25 20:02:28 +00:00
|
|
|
{ lib, fetchurl, buildPythonPackage, docutils, six, sphinx, isPy3k }:
|
2016-07-08 12:54:44 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2017-05-27 12:24:47 +00:00
|
|
|
version = "4.6.0";
|
2017-05-27 09:25:35 +00:00
|
|
|
pname = "breathe";
|
|
|
|
name = "${pname}-${version}";
|
2016-07-08 12:54:44 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://pypi/b/breathe/${name}.tar.gz";
|
2017-05-27 12:24:47 +00:00
|
|
|
sha256 = "9db2ba770f824da323b9ea3db0b98d613a4e0af094c82ccb0a82991da81b736a";
|
2016-07-08 12:54:44 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ docutils six sphinx ];
|
|
|
|
|
2016-09-25 20:02:28 +00:00
|
|
|
disabled = isPy3k;
|
|
|
|
|
2016-07-08 12:54:44 +00:00
|
|
|
meta = {
|
|
|
|
homepage = https://github.com/michaeljones/breathe;
|
|
|
|
license = lib.licenses.bsd3;
|
|
|
|
description = "Sphinx Doxygen renderer";
|
|
|
|
inherit (sphinx.meta) platforms;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|