Unverified Commit 6e178d4b authored by Tom Hunze's avatar Tom Hunze
Browse files

python3Packages.tracerite: fix license

parent 42467771
Loading
Loading
Loading
Loading
+6 −1
Original line number Diff line number Diff line
@@ -43,7 +43,12 @@ buildPythonPackage rec {
    description = "Tracebacks for Humans in Jupyter notebooks";
    homepage = "https://github.com/sanic-org/tracerite";
    changelog = "https://github.com/sanic-org/tracerite/releases/tag/${src.tag}";
    license = lib.licenses.unlicense;
    # See https://github.com/sanic-org/tracerite/issues/13
    license = with lib.licenses; [
      mit
      publicDomain
      unlicense
    ];
    maintainers = with lib.maintainers; [ p0lyw0lf ];
  };
}