hpp2plantuml: init at 0.8.5

This commit is contained in:
eymeric 2024-06-06 22:09:28 +02:00
parent 610a87e260
commit 56accda6ff
No known key found for this signature in database

View File

@ -0,0 +1,33 @@
{
lib,
python3Packages,
fetchPypi,
}:
python3Packages.buildPythonApplication rec {
pname = "hpp2plantuml";
version = "0.8.5";
format = "wheel";
src = fetchPypi {
inherit pname version format;
hash = "sha256-PfTJmBypI21AAK3sMojygQfrhnRqcMmVCW4dxGfDfQg=";
};
propagatedBuildInputs = with python3Packages; [
jinja2
cppheaderparser
];
pythonImportsCheck = [ "hpp2plantuml" ];
nativeCheckInputs = with python3Packages; [ pytest ];
meta = {
description = "Convert C++ header files to PlantUML";
homepage = "https://github.com/thibaultmarin/hpp2plantuml";
license = lib.licenses.mit;
mainProgram = "hpp2plantuml";
maintainers = with lib.maintainers; [ eymeric ];
};
}