From 889cfb698a124dcf2cfbbedcc7714f34e9c06e03 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Thu, 8 Aug 2024 00:08:28 +0200 Subject: [PATCH] python312Packages.pubnub: update license Upstream switched from MIT to their own license PubNub Software Development Kit License Agreement https://github.com/pubnub/python/blob/master/LICENSE --- pkgs/development/python-modules/pubnub/default.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/pubnub/default.nix b/pkgs/development/python-modules/pubnub/default.nix index 868926ba95f1..3f027199af4a 100644 --- a/pkgs/development/python-modules/pubnub/default.nix +++ b/pkgs/development/python-modules/pubnub/default.nix @@ -62,7 +62,9 @@ buildPythonPackage rec { description = "Python-based APIs for PubNub"; homepage = "https://github.com/pubnub/python"; changelog = "https://github.com/pubnub/python/releases/tag/v${version}"; - license = with licenses; [ mit ]; + # PubNub Software Development Kit License Agreement + # https://github.com/pubnub/python/blob/master/LICENSE + license = licenses.unfreeRedistributable; maintainers = with maintainers; [ fab ]; }; }