From c191a6dce07c47a96427fc3bdefc354dda35f210 Mon Sep 17 00:00:00 2001 From: Artem Leshchev Date: Mon, 29 Jul 2024 12:53:22 -0500 Subject: [PATCH] python3Packages.oauth2client: fix license It was under Apache License 2.0 all that time. --- pkgs/development/python-modules/oauth2client/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/oauth2client/default.nix b/pkgs/development/python-modules/oauth2client/default.nix index c6fc4b6b290c..895c988381e9 100644 --- a/pkgs/development/python-modules/oauth2client/default.nix +++ b/pkgs/development/python-modules/oauth2client/default.nix @@ -29,6 +29,6 @@ buildPythonPackage rec { meta = with lib; { description = "Client library for OAuth 2.0"; homepage = "https://github.com/google/oauth2client/"; - license = licenses.bsd2; + license = licenses.asl20; }; }