about summary refs log tree commit diff
path: root/pkgs/applications/editors/neovim
diff options
context:
space:
mode:
authorJörg Thalheim <Mic92@users.noreply.github.com>2019-01-17 09:47:52 +0000
committerGitHub <noreply@github.com>2019-01-17 09:47:52 +0000
commit478188d41c522d45795be3daba921e1e6cb955dd (patch)
tree4669dc3ca52c91a4528bb51e93fb4530d8c0fdd2 /pkgs/applications/editors/neovim
parent1d003b8cdea5f9fb6460091ac4730f787e892c5b (diff)
parentdb5ee28843826452fb92ff2934cff5920e782a4d (diff)
downloadnixlib-478188d41c522d45795be3daba921e1e6cb955dd.tar
nixlib-478188d41c522d45795be3daba921e1e6cb955dd.tar.gz
nixlib-478188d41c522d45795be3daba921e1e6cb955dd.tar.bz2
nixlib-478188d41c522d45795be3daba921e1e6cb955dd.tar.lz
nixlib-478188d41c522d45795be3daba921e1e6cb955dd.tar.xz
nixlib-478188d41c522d45795be3daba921e1e6cb955dd.tar.zst
nixlib-478188d41c522d45795be3daba921e1e6cb955dd.zip
Merge pull request #54092 from r-ryantm/auto-update/python3.7-neovim-remote
neovim-remote: 2.1.3 -> 2.1.4
Diffstat (limited to 'pkgs/applications/editors/neovim')
-rw-r--r--pkgs/applications/editors/neovim/neovim-remote.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/editors/neovim/neovim-remote.nix b/pkgs/applications/editors/neovim/neovim-remote.nix
index d9b928f111ae..1444d53da077 100644
--- a/pkgs/applications/editors/neovim/neovim-remote.nix
+++ b/pkgs/applications/editors/neovim/neovim-remote.nix
@@ -4,14 +4,14 @@ with stdenv.lib;
 
 pythonPackages.buildPythonPackage rec {
   pname = "neovim-remote";
-  version = "2.1.3";
+  version = "2.1.4";
   disabled = !pythonPackages.isPy3k;
 
   src = fetchFromGitHub {
     owner = "mhinz";
     repo = "neovim-remote";
     rev = "v${version}";
-    sha256 = "0nx987af29ajlpwnwfc3z8gplxv69gj53s4bzm6pwwsfbhfakdah";
+    sha256 = "1s438cbyyzgg96b6639wk1ny6d6p2ywcba41l3r027wzyl7wrn8v";
   };
 
   propagatedBuildInputs = with pythonPackages; [ pynvim psutil ];