about summary refs log tree commit diff
path: root/pkgs/applications/editors/neovim/neovim-remote.nix
diff options
context:
space:
mode:
authorDoron Behar <doron.behar@gmail.com>2020-02-13 21:24:22 +0200
committerJon <jonringer@users.noreply.github.com>2020-02-13 13:20:29 -0800
commitd4169851a53c230d88392f3fdc15eefd3612b074 (patch)
tree83b734d26406c8308e054ed274f482c34760affd /pkgs/applications/editors/neovim/neovim-remote.nix
parent088f8ee7fc21a99c58874bb87764c2dcf4983695 (diff)
neovim-remote: add now needed setuptools as input
Diffstat (limited to 'pkgs/applications/editors/neovim/neovim-remote.nix')
-rw-r--r--pkgs/applications/editors/neovim/neovim-remote.nix6
1 files changed, 5 insertions, 1 deletions
diff --git a/pkgs/applications/editors/neovim/neovim-remote.nix b/pkgs/applications/editors/neovim/neovim-remote.nix
index aae37b5a2621f..c77cfd9c2b6e6 100644
--- a/pkgs/applications/editors/neovim/neovim-remote.nix
+++ b/pkgs/applications/editors/neovim/neovim-remote.nix
@@ -14,7 +14,11 @@ pythonPackages.buildPythonApplication rec {
     sha256 = "0jlw0qksak4bdzddpsj74pm2f2bgpj3cwrlspdjjy0j9qzg0mpl9";
   };
 
-  propagatedBuildInputs = with pythonPackages; [ pynvim psutil ];
+  propagatedBuildInputs = with pythonPackages; [
+    pynvim
+    psutil
+    setuptools
+  ];
 
   meta = {
     description = "A tool that helps controlling nvim processes from a terminal";