mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-03-13 20:46:31 +01:00
33 lines
531 B
Nix
33 lines
531 B
Nix
{
|
|
buildPythonPackage,
|
|
doxygen,
|
|
lxml,
|
|
setuptools,
|
|
six,
|
|
}:
|
|
buildPythonPackage rec {
|
|
format = "setuptools";
|
|
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";
|
|
};
|
|
}
|