python3Packages.aws-encryption-sdk: 4.0.3 -> 4.0.4 (#495690)

This commit is contained in:
Nick Cao
2026-03-02 23:07:47 +00:00
committed by GitHub
@@ -12,16 +12,16 @@
wrapt,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "aws-encryption-sdk";
version = "4.0.3";
version = "4.0.4";
pyproject = true;
src = fetchFromGitHub {
owner = "aws";
repo = "aws-encryption-sdk-python";
tag = "v${version}";
hash = "sha256-SlYXob61YLl96NKnmsGZTIU10bfwKYbhLsHjC/tXGI4=";
tag = "v${finalAttrs.version}";
hash = "sha256-u0Fu6ikUJ70RQgptsAGbzmx3+FpXGTpN4Y2rKOSgO2o=";
};
build-system = [ setuptools ];
@@ -59,8 +59,8 @@ buildPythonPackage rec {
meta = {
description = "Python implementation of the AWS Encryption SDK";
homepage = "https://aws-encryption-sdk-python.readthedocs.io/";
changelog = "https://github.com/aws/aws-encryption-sdk-python/blob/v${version}/CHANGELOG.rst";
changelog = "https://github.com/aws/aws-encryption-sdk-python/blob/${finalAttrs.src.tag}/CHANGELOG.rst";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ anthonyroussel ];
};
}
})