1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-06-23 09:51:00 +03:00
nixpkgs/pkgs/development/tools/documentation/doxygen/doxmlparser.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

33 lines
506 B
Nix
Raw Normal View History

{
buildPythonPackage,
doxygen,
lxml,
setuptools,
six,
}:
buildPythonPackage rec {
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";
};
}