python313Packages.py-iam-expand: init at 0.2.0

Module to expand and deobfuscate AWS IAM actions

https://github.com/prowler-cloud/py-iam-expand
This commit is contained in:
Fabian Affolter
2025-09-24 20:40:39 +02:00
parent 3e5cde76e5
commit 73e69a99b9
2 changed files with 39 additions and 0 deletions
@@ -0,0 +1,37 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
iamdata,
poetry-core,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "py-iam-expand";
version = "0.2.0";
pyproject = true;
src = fetchFromGitHub {
owner = "prowler-cloud";
repo = "py-iam-expand";
tag = version;
hash = "sha256-P6PWf7qkc/8/BeRycYgvFApIaUrbhKq4h718Nrs817U=";
};
build-system = [ poetry-core ];
dependencies = [ iamdata ];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "py_iam_expand" ];
meta = {
description = "Module to expand and deobfuscate AWS IAM actions";
homepage = "https://github.com/prowler-cloud/py-iam-expand";
changelog = "https://github.com/prowler-cloud/py-iam-expand/releases/tag/${src.tag}";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ fab ];
};
}
+2
View File
@@ -12432,6 +12432,8 @@ self: super: with self; {
py-expression-eval = callPackage ../development/python-modules/py-expression-eval { };
py-iam-expand = callPackage ../development/python-modules/py-iam-expand { };
py-improv-ble-client = callPackage ../development/python-modules/py-improv-ble-client { };
py-libnuma = callPackage ../development/python-modules/py-libnuma { };