From 37934f8ca32150f303e42cd097b58f7c8ecc2b37 Mon Sep 17 00:00:00 2001 From: Ben Wolsieffer Date: Wed, 12 May 2021 22:52:52 -0400 Subject: [PATCH] python3Packages.pymavlink: license should be lgpl3Plus The license file doesn't specify that later versions can be used, but I missed that it is stated in the README: "pymavlink is released under the GNU Lesser General Public License v3 or later." --- pkgs/development/python-modules/pymavlink/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/pymavlink/default.nix b/pkgs/development/python-modules/pymavlink/default.nix index 2f39be79821..894e5c128e9 100644 --- a/pkgs/development/python-modules/pymavlink/default.nix +++ b/pkgs/development/python-modules/pymavlink/default.nix @@ -22,7 +22,7 @@ buildPythonPackage rec { meta = with lib; { description = "Python MAVLink interface and utilities"; homepage = "https://github.com/ArduPilot/pymavlink"; - license = with licenses; [ lgpl3Only mit ]; + license = with licenses; [ lgpl3Plus mit ]; maintainers = with maintainers; [ lopsided98 ]; }; }