From f3cb27405c3add4cc0d01ac191fe1041d31af96e Mon Sep 17 00:00:00 2001 From: Johann Dahm Date: Tue, 13 Jul 2021 22:39:53 -0700 Subject: [PATCH] Add @jdahm as maintainer of python3Packages.devtools --- maintainers/maintainer-list.nix | 6 ++++++ pkgs/development/python-modules/devtools/default.nix | 1 + 2 files changed, 7 insertions(+) diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index ef102e3a7a3..1df8fb0293a 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -4793,6 +4793,12 @@ githubId = 1383440; name = "Jason Gilliland"; }; + jdahm = { + email = "johann.dahm@gmail.com"; + github = "jdahm"; + githubId = 68032; + name = "Johann Dahm"; + }; jdanek = { email = "jdanek@redhat.com"; github = "jdanekrh"; diff --git a/pkgs/development/python-modules/devtools/default.nix b/pkgs/development/python-modules/devtools/default.nix index 29a5234608b..32050acfdf2 100644 --- a/pkgs/development/python-modules/devtools/default.nix +++ b/pkgs/development/python-modules/devtools/default.nix @@ -23,5 +23,6 @@ buildPythonPackage rec { description = "Python's missing debug print command and other development tools"; homepage = "https://python-devtools.helpmanual.io/"; license = licenses.mit; + maintainers = with maintainers; [ jdahm ]; }; }