summary refs log blame commit diff
path: root/pkgs/applications/editors/neovim/neovim-remote.nix
blob: 1c99429a7fe27f5e4cb3d23c68883bc4ea733b09 (plain) (tree)
1
2
3
4
5
6
7

                                            

                

                                       
                     





                                    
                                                                    

    
                                                                 







                                                                                 
 
{ stdenv, fetchFromGitHub, pythonPackages }:

with stdenv.lib;

pythonPackages.buildPythonPackage rec {
  name = "neovim-remote-${version}";
  version = "v1.8.6";
  disabled = !pythonPackages.isPy3k;

  src = fetchFromGitHub {
    owner = "mhinz";
    repo = "neovim-remote";
    rev = version;
    sha256 = "0x01zpmxi37jr7j2az2bd8902h7zhkpg6kpvc8xmll9f7703zz2l";
  };

  propagatedBuildInputs = with pythonPackages; [ neovim psutil ];

  meta = {
    description = "A tool that helps controlling nvim processes from a terminal";
    homepage = https://github.com/mhinz/neovim-remote/;
    license = licenses.mit;
    maintainers = with maintainers; [ edanaher ];
    platforms = platforms.unix;
  };
}