diff --git a/pkgs/development/python-modules/pynvim/default.nix b/pkgs/development/python-modules/pynvim/default.nix index 8bed5bf24d21..2ce6e83315a3 100644 --- a/pkgs/development/python-modules/pynvim/default.nix +++ b/pkgs/development/python-modules/pynvim/default.nix @@ -26,7 +26,7 @@ buildPythonPackage rec { propagatedBuildInputs = [ msgpack - ] ++ lib.optional (!isPyPy) [ + ] ++ lib.optionals (!isPyPy) [ greenlet ]; @@ -42,6 +42,6 @@ buildPythonPackage rec { homepage = "https://github.com/neovim/pynvim"; changelog = "https://github.com/neovim/pynvim/releases/tag/${version}"; license = licenses.asl20; - maintainers = with maintainers; [ ]; + maintainers = with maintainers; [ figsoda ]; }; }