about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorAlexey Shmalko <rasen.dubi@gmail.com>2018-12-09 01:25:54 +0200
committerAlexey Shmalko <rasen.dubi@gmail.com>2018-12-09 01:25:54 +0200
commit211938532cc788d9dadbb9b14d0845e4576dfeb4 (patch)
treecd51c7672dbba71e5599441e62cb64bf19c9157e /pkgs
parent4898e0921580fd3b53c6882ae6da1ef294d56aab (diff)
downloadnixlib-211938532cc788d9dadbb9b14d0845e4576dfeb4.tar
nixlib-211938532cc788d9dadbb9b14d0845e4576dfeb4.tar.gz
nixlib-211938532cc788d9dadbb9b14d0845e4576dfeb4.tar.bz2
nixlib-211938532cc788d9dadbb9b14d0845e4576dfeb4.tar.lz
nixlib-211938532cc788d9dadbb9b14d0845e4576dfeb4.tar.xz
nixlib-211938532cc788d9dadbb9b14d0845e4576dfeb4.tar.zst
nixlib-211938532cc788d9dadbb9b14d0845e4576dfeb4.zip
pythonPackages.neovim-remote: 2.1.0 -> 2.1.1
Diffstat (limited to 'pkgs')
-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 c1b459638c9c..11566293c49b 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.0";
+  version = "2.1.1";
   disabled = !pythonPackages.isPy3k;
 
   src = fetchFromGitHub {
     owner = "mhinz";
     repo = "neovim-remote";
     rev = "v${version}";
-    sha256 = "0gri4d8gg5hvywffvj8r123d06x006qhink7d54yk6lvplw64gyc";
+    sha256 = "1hkzcc141imjin03wpfykw50k0vs7vj1lr09czb2hsyf937gyjqn";
   };
 
   propagatedBuildInputs = with pythonPackages; [ pynvim psutil ];