cloudgoat: init at 2.3.0 (#424025)

This commit is contained in:
Fabian Affolter 2025-07-11 12:03:16 +02:00 committed by GitHub
commit 89ba37d910
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -0,0 +1,41 @@
{
lib,
python3,
fetchFromGitHub,
}:
python3.pkgs.buildPythonApplication rec {
pname = "cloudgoat";
version = "2.3.0";
pyproject = true;
src = fetchFromGitHub {
owner = "RhinoSecurityLabs";
repo = "cloudgoat";
tag = "v${version}";
hash = "sha256-xDUDpdEluYKudrjIYOoQWNvF8BoC/VpSVdV5pzfLoMc=";
};
build-system = with python3.pkgs; [ poetry-core ];
dependencies = with python3.pkgs; [
argcomplete
boto3
pyyaml
requests
sqlite-utils
];
nativeCheckInputs = with python3.pkgs; [ pytestCheckHook ];
pythonImportsCheck = [ "cloudgoat" ];
meta = {
description = "AWS deployment tool for a vulnerable environment";
homepage = "https://github.com/RhinoSecurityLabs/cloudgoat";
changelog = "https://github.com/RhinoSecurityLabs/cloudgoat/releases/tag/${src.tag}";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ fab ];
mainProgram = "cloudgoat";
};
}