diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index 77f949a68e16..34a3348c3e8e 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -18717,6 +18717,12 @@ name = "Philipp Rintz"; matrix = "@philipp:srv.icu"; }; + p0lyw0lf = { + email = "p0lyw0lf@protonmail.com"; + name = "PolyWolf"; + github = "p0lyw0lf"; + githubId = 31190026; + }; p3psi = { name = "Elliot Boo"; email = "p3psi.boo@gmail.com"; diff --git a/pkgs/development/python-modules/sanic/default.nix b/pkgs/development/python-modules/sanic/default.nix index b794cd283159..d3174581741c 100644 --- a/pkgs/development/python-modules/sanic/default.nix +++ b/pkgs/development/python-modules/sanic/default.nix @@ -117,7 +117,7 @@ buildPythonPackage rec { homepage = "https://github.com/sanic-org/sanic/"; changelog = "https://github.com/sanic-org/sanic/releases/tag/${src.tag}"; license = licenses.mit; - maintainers = [ ]; + maintainers = with maintainers; [ p0lyw0lf ]; mainProgram = "sanic"; }; } diff --git a/pkgs/development/python-modules/tracerite/default.nix b/pkgs/development/python-modules/tracerite/default.nix index 1a590780cdfc..9a4d9df7a0a7 100644 --- a/pkgs/development/python-modules/tracerite/default.nix +++ b/pkgs/development/python-modules/tracerite/default.nix @@ -44,6 +44,6 @@ buildPythonPackage rec { homepage = "https://github.com/sanic-org/tracerite"; changelog = "https://github.com/sanic-org/tracerite/releases/tag/v${version}"; license = licenses.unlicense; - maintainers = [ ]; + maintainers = with maintainers; [ p0lyw0lf ]; }; }