1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-06-22 17:31:04 +03:00
nixpkgs/pkgs/development/tools/documentation/doxygen/doxmlparser.nix
Guilhem Saurel 8955bab27a python3Packages.doxmlparser: init at 1.12.0
Co-authored-by: OTABI Tomoya <tomoya.otabi@gmail.com>
Co-authored-by: Arne Keller <2012gdwu+github@posteo.de>
2025-03-26 23:58:59 +01:00

32 lines
506 B
Nix

{
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";
};
}