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:
@@ -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 ];
|
||||
};
|
||||
}
|
||||
@@ -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 { };
|
||||
|
||||
Reference in New Issue
Block a user