mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 15:27:20 +03:00
hpp2plantuml: init at 0.8.5
This commit is contained in:
parent
610a87e260
commit
56accda6ff
33
pkgs/by-name/hp/hpp2plantuml/package.nix
Normal file
33
pkgs/by-name/hp/hpp2plantuml/package.nix
Normal 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 ];
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user