summary refs log tree commit diff
diff options
context:
space:
mode:
authorEvan Danaher <github@edanaher.net>2017-02-03 08:42:39 -0500
committerEvan Danaher <edanaher@edanaher.net>2017-02-03 09:32:55 -0500
commitcdb59104f139aafaa2c8fa3f9085c4eee556c0be (patch)
tree7af44efe0c22380280bb4c98ef8532a5110581b2
parent20db0d793f72c0bdd0868208d58866f9cd9f0b58 (diff)
downloadnixlib-cdb59104f139aafaa2c8fa3f9085c4eee556c0be.tar
nixlib-cdb59104f139aafaa2c8fa3f9085c4eee556c0be.tar.gz
nixlib-cdb59104f139aafaa2c8fa3f9085c4eee556c0be.tar.bz2
nixlib-cdb59104f139aafaa2c8fa3f9085c4eee556c0be.tar.lz
nixlib-cdb59104f139aafaa2c8fa3f9085c4eee556c0be.tar.xz
nixlib-cdb59104f139aafaa2c8fa3f9085c4eee556c0be.tar.zst
nixlib-cdb59104f139aafaa2c8fa3f9085c4eee556c0be.zip
neovim-remote: init at v1.4.0
-rw-r--r--pkgs/top-level/python-packages.nix17
1 files changed, 17 insertions, 0 deletions
diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix
index 477914e3836b..57679082c540 100644
--- a/pkgs/top-level/python-packages.nix
+++ b/pkgs/top-level/python-packages.nix
@@ -29806,6 +29806,23 @@ EOF
     '';
   };
 
+  neovim-remote = buildPythonPackage rec {
+    name = "neovim-remote-${version}";
+    version = "v1.4.0";
+    disabled = !isPy3k;
+
+    src = pkgs.fetchFromGitHub {
+      owner = "mhinz";
+      repo = "neovim-remote";
+      rev = version;
+      sha256 = "0msvfh27f56xj5ki59ikzavxz863nal5scm57n43618m49qzg8iz";
+    };
+
+    propagatedBuildInputs = [
+      self.neovim
+    ];
+  };
+
   ghp-import = buildPythonPackage rec {
     version = "0.4.1";
     name = "ghp-import-${version}";