From 8e640173144746f9babe2bc3338e5d5eb79f1f70 Mon Sep 17 00:00:00 2001 From: figsoda Date: Mon, 12 Jun 2023 09:45:56 -0400 Subject: [PATCH] python310Packages.pynvim: fix & adopt --- pkgs/development/python-modules/pynvim/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 ]; }; }