From 8fd88424c4e9bd0332e078893e5a29fbe17ec9a0 Mon Sep 17 00:00:00 2001 From: Anthony Roussel Date: Tue, 26 Sep 2023 13:29:23 +0200 Subject: [PATCH 1/3] python311Packages.aws-encryption-sdk: fix license --- pkgs/development/python-modules/aws-encryption-sdk/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/aws-encryption-sdk/default.nix b/pkgs/development/python-modules/aws-encryption-sdk/default.nix index 6088e22e80d7..7c69b062bd80 100644 --- a/pkgs/development/python-modules/aws-encryption-sdk/default.nix +++ b/pkgs/development/python-modules/aws-encryption-sdk/default.nix @@ -48,7 +48,7 @@ buildPythonPackage rec { homepage = "https://aws-encryption-sdk-python.readthedocs.io/"; changelog = "https://github.com/aws/aws-encryption-sdk-python/blob/v${version}/CHANGELOG.rst"; description = "Fully compliant, native Python implementation of the AWS Encryption SDK."; - license = licenses.apsl20; + license = licenses.asl20; maintainers = with maintainers; [ anthonyroussel ]; }; } From 29cf997770a558f421503b373b833943032a4c40 Mon Sep 17 00:00:00 2001 From: Anthony Roussel Date: Tue, 26 Sep 2023 13:29:44 +0200 Subject: [PATCH 2/3] python311Packages.base64io: fix license --- pkgs/development/python-modules/base64io/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/base64io/default.nix b/pkgs/development/python-modules/base64io/default.nix index 8e5b121759fc..4fefa1336214 100644 --- a/pkgs/development/python-modules/base64io/default.nix +++ b/pkgs/development/python-modules/base64io/default.nix @@ -23,7 +23,7 @@ buildPythonPackage rec { homepage = "https://base64io-python.readthedocs.io/"; changelog = "https://github.com/aws/base64io-python/blob/${version}/CHANGELOG.rst"; description = "Python stream implementation for base64 encoding/decoding"; - license = licenses.apsl20; + license = licenses.asl20; maintainers = with maintainers; [ anthonyroussel ]; }; } From 23f886db75e2c18969c51727c5638ec0fc82f38f Mon Sep 17 00:00:00 2001 From: Anthony Roussel Date: Tue, 26 Sep 2023 13:29:54 +0200 Subject: [PATCH 3/3] aws-encryption-sdk-cli: fix license and meta.mainProgram --- pkgs/tools/admin/aws-encryption-sdk-cli/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/tools/admin/aws-encryption-sdk-cli/default.nix b/pkgs/tools/admin/aws-encryption-sdk-cli/default.nix index 29b51a678dbf..526730e72228 100644 --- a/pkgs/tools/admin/aws-encryption-sdk-cli/default.nix +++ b/pkgs/tools/admin/aws-encryption-sdk-cli/default.nix @@ -46,7 +46,8 @@ python3Packages.buildPythonApplication rec { homepage = "https://aws-encryption-sdk-cli.readthedocs.io/"; changelog = "https://github.com/aws/aws-encryption-sdk-cli/blob/v${version}/CHANGELOG.rst"; description = "CLI wrapper around aws-encryption-sdk-python"; - license = licenses.apsl20; + license = licenses.asl20; + mainProgram = "aws-encryption-cli"; maintainers = with maintainers; [ anthonyroussel ]; }; }