diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index 426aad99b45..7e0f92e7092 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -2910,6 +2910,12 @@ githubId = 25820499; name = "Roman Kretschmer"; }; + goertzenator = { + email = "daniel.goertzen@gmail.com"; + github = "goertzenator"; + githubId = 605072; + name = "Daniel Goertzen"; + }; goibhniu = { email = "cillian.deroiste@gmail.com"; github = "cillianderoiste"; diff --git a/pkgs/development/python-modules/freetype-py/default.nix b/pkgs/development/python-modules/freetype-py/default.nix index 52b9b2ea1fa..71b29a54d82 100644 --- a/pkgs/development/python-modules/freetype-py/default.nix +++ b/pkgs/development/python-modules/freetype-py/default.nix @@ -21,9 +21,9 @@ buildPythonPackage rec { propagatedBuildInputs = [ freetype ]; meta = with lib; { - homepage = https://github.com/rougier/freetype-py; + homepage = "https://github.com/rougier/freetype-py"; description = "FreeType (high-level Python API)"; license = licenses.bsd3; - maintainers = with maintainers; [ ]; + maintainers = with maintainers; [ goertzenator ]; }; } diff --git a/pkgs/development/python-modules/vispy/default.nix b/pkgs/development/python-modules/vispy/default.nix index fb44a4911ae..61fb42dd2eb 100644 --- a/pkgs/development/python-modules/vispy/default.nix +++ b/pkgs/development/python-modules/vispy/default.nix @@ -31,9 +31,9 @@ buildPythonPackage rec { doCheck = false; # otherwise runs OSX code on linux. meta = with lib; { - homepage = http://vispy.org/index.html; + homepage = "http://vispy.org/index.html"; description = "Interactive scientific visualization in Python"; license = licenses.bsd3; - maintainers = with maintainers; [ ]; + maintainers = with maintainers; [ goertzenator ]; }; }