Add doxypy nixpkg

Signed-off-by: Shea Levy <shea@shealevy.com>
This commit is contained in:
Shea Levy 2013-04-29 14:25:25 -04:00
parent 27b3ab6a8d
commit c60a1f67cc

View File

@ -1476,6 +1476,22 @@ pythonPackages = python.modules // rec {
};
};
doxypy = buildPythonPackage rec {
name = "doxypy-0.4.2";
src = fetchurl {
url = "http://code.foosel.org/files/${name}.tar.gz";
sha256 = "1afmb30zmy7942b53qa5vd3js883wwqqls35n8xfb3rnj0qnll8g";
};
meta = {
homepage = http://code.foosel.org/doxypy;
description = "An input filter for Doxygen";
};
doCheck = false;
};
dtopt = buildPythonPackage rec {
name = "dtopt-0.1";