mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-22 17:31:04 +03:00

Co-authored-by: OTABI Tomoya <tomoya.otabi@gmail.com> Co-authored-by: Arne Keller <2012gdwu+github@posteo.de>
32 lines
506 B
Nix
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";
|
|
};
|
|
}
|