From 8b6b9329ea4b1a85781b0e74199b60e1e40e0e84 Mon Sep 17 00:00:00 2001 From: natsukium Date: Sat, 31 May 2025 23:18:28 +0900 Subject: [PATCH] python3Packages.pytest-trio: add mit license to meta.license https://github.com/python-trio/pytest-trio/blob/250ec45f5d72eca78ab0ea2d1571667d2c51f8b5/setup.py#L31-L32 --- pkgs/development/python-modules/pytest-trio/default.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/pytest-trio/default.nix b/pkgs/development/python-modules/pytest-trio/default.nix index d55ad6969d35..6bcd648b015d 100644 --- a/pkgs/development/python-modules/pytest-trio/default.nix +++ b/pkgs/development/python-modules/pytest-trio/default.nix @@ -47,7 +47,10 @@ buildPythonPackage rec { meta = { description = "Pytest plugin for trio"; homepage = "https://github.com/python-trio/pytest-trio"; - license = lib.licenses.asl20; + license = with lib.licenses; [ + asl20 + mit + ]; maintainers = with lib.maintainers; [ hexa ]; }; }