mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-23 17:56:53 +03:00
33 lines
506 B
Nix
33 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";
|
||
|
};
|
||
|
}
|