python3Packages.aws-request-signer: init at 1.2.0

This commit is contained in:
Pyrox 2024-07-14 15:15:43 -04:00
parent a5c95926e2
commit b63730c7ae
No known key found for this signature in database
GPG Key ID: 8CDF3F7CAA53A0F5
2 changed files with 45 additions and 0 deletions

View File

@ -0,0 +1,43 @@
{
lib,
buildPythonPackage,
fetchPypi,
poetry-core,
requests,
requests-toolbelt,
}:
buildPythonPackage rec {
pname = "aws-request-signer";
version = "1.2.0";
pyproject = true;
src = fetchPypi {
inherit version;
pname = "aws_request_signer";
hash = "sha256-DVorDO0wz94Fhduax7VsQZ5B5SnBfsHQoLoW4m6Ce+U=";
};
postPatch = ''
substituteInPlace pyproject.toml \
--replace-fail "poetry>=0.12" poetry-core \
--replace-fail poetry.masonry.api poetry.core.masonry.api
'';
build-system = [ poetry-core ];
dependencies = [
requests
requests-toolbelt
];
doCheck = false;
meta = {
changelog = "https://github.com/iksteen/aws-request-signer/releases/tag/${version}";
description = "Python library to sign AWS requests using AWS Signature V4.";
homepage = "https://github.com/iksteen/aws-request-signer";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ pyrox0 ];
};
}

View File

@ -1064,6 +1064,8 @@ self: super: with self; {
aws-lambda-builders = callPackage ../development/python-modules/aws-lambda-builders { };
aws-request-signer = callPackage ../development/python-modules/aws-request-signer { };
aws-sam-translator = callPackage ../development/python-modules/aws-sam-translator { };
aws-secretsmanager-caching = callPackage ../development/python-modules/aws-secretsmanager-caching { };