pythonPackages.breathe: init at 4.2.0

It seems to work OK, but I'm not good at packaging python stuff.
This commit is contained in:
Vladimír Čunát 2016-07-08 14:54:44 +02:00
parent 56791034f6
commit b732af00bb
2 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,21 @@
{ lib, fetchurl, buildPythonPackage, docutils, six, sphinx }:
buildPythonPackage rec {
name = "breathe-${version}";
version = "4.2.0";
src = fetchurl {
url = "mirror://pypi/b/breathe/${name}.tar.gz";
md5 = "e35f6ce54485663857129370047f6057";
};
propagatedBuildInputs = [ docutils six sphinx ];
meta = {
homepage = https://github.com/michaeljones/breathe;
license = lib.licenses.bsd3;
description = "Sphinx Doxygen renderer";
inherit (sphinx.meta) platforms;
};
}

View File

@ -146,6 +146,8 @@ in modules // {
blivet = callPackage ../development/python-modules/blivet { };
breathe = callPackage ../development/python-modules/breathe { };
bugseverywhere = callPackage ../applications/version-management/bugseverywhere {};
dbf = buildPythonPackage rec {