2024-08-12 16:21:39 +02:00
|
|
|
{
|
|
|
|
|
buildPythonPackage,
|
|
|
|
|
doxygen,
|
|
|
|
|
lxml,
|
|
|
|
|
setuptools,
|
|
|
|
|
six,
|
|
|
|
|
}:
|
|
|
|
|
buildPythonPackage rec {
|
2025-07-02 03:20:12 +02:00
|
|
|
format = "setuptools";
|
2024-08-12 16:21:39 +02:00
|
|
|
inherit (doxygen) version src;
|
|
|
|
|
pname = "doxmlparser";
|
|
|
|
|
|
|
|
|
|
sourceRoot = "${src.name}/addon/doxmlparser";
|
|
|
|
|
|
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
|
|
|
|
|
|
dependencies = [
|
|
|
|
|
lxml
|
|
|
|
|
six
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
pythonImportsCheck = [ "doxmlparser" ];
|
|
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
|
inherit (doxygen.meta)
|
|
|
|
|
license
|
|
|
|
|
homepage
|
|
|
|
|
changelog
|
|
|
|
|
platforms
|
|
|
|
|
;
|
|
|
|
|
description = "Library to parse the XML output produced by doxygen";
|
|
|
|
|
};
|
|
|
|
|
}
|