python313Packages.iamdata: init at 0.1.202509241

Module for utilizing AWS IAM data for Services, Actions, Resources,
and Condition Keys

https://github.com/cloud-copilot/iam-data-python
This commit is contained in:
Fabian Affolter
2025-09-24 20:30:50 +02:00
parent 34ece94d2b
commit 3e5cde76e5
2 changed files with 38 additions and 0 deletions
@@ -0,0 +1,36 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
hatchling,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "iamdata";
version = "0.1.202509241";
pyproject = true;
src = fetchFromGitHub {
owner = "cloud-copilot";
repo = "iam-data-python";
tag = "v${version}";
hash = "sha256-bZkU+9wrFqokw8/6FzjoCu2vNUWcJRNj8f6b+XCFKlc=";
};
build-system = [ hatchling ];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "iamdata" ];
enabledTestPaths = [ "iamdata/tests/*.py" ];
meta = {
description = "Module for utilizing AWS IAM data for Services, Actions, Resources, and Condition Keys";
homepage = "https://github.com/cloud-copilot/iam-data-python";
changelog = "https://github.com/cloud-copilot/iam-data-python/releases/tag/${src.tag}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
}
+2
View File
@@ -6894,6 +6894,8 @@ self: super: with self; {
i3ipc = callPackage ../development/python-modules/i3ipc { };
iamdata = callPackage ../development/python-modules/iamdata { };
iammeter = callPackage ../development/python-modules/iammeter { };
iapws = callPackage ../development/python-modules/iapws { };