mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-11-09 16:18:34 +01:00
Diff: https://github.com/cloud-copilot/iam-data-python/compare/v0.1.202511061...v0.1.202511081 Changelog: https://github.com/cloud-copilot/iam-data-python/releases/tag/v0.1.202511081
39 lines
934 B
Nix
39 lines
934 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
hatchling,
|
|
pytestCheckHook,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "iamdata";
|
|
version = "0.1.202511081";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "cloud-copilot";
|
|
repo = "iam-data-python";
|
|
tag = "v${version}";
|
|
hash = "sha256-0yV5yZ0gElw2p8UjwU6ujkXu1DV2cmOPlG9XgObUNUA=";
|
|
};
|
|
|
|
__darwinAllowLocalNetworking = true;
|
|
|
|
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 ];
|
|
};
|
|
}
|