2017-02-03 22:58:22 +01:00
|
|
|
{ stdenv, fetchFromGitHub, pythonPackages }:
|
|
|
|
|
2017-02-10 17:43:42 +01:00
|
|
|
with stdenv.lib;
|
|
|
|
|
2017-02-03 22:58:22 +01:00
|
|
|
pythonPackages.buildPythonPackage rec {
|
|
|
|
name = "neovim-remote-${version}";
|
2017-05-02 13:06:43 +02:00
|
|
|
version = "v1.6.0";
|
2017-02-03 22:58:22 +01:00
|
|
|
disabled = !pythonPackages.isPy3k;
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "mhinz";
|
|
|
|
repo = "neovim-remote";
|
|
|
|
rev = version;
|
2017-05-02 13:06:43 +02:00
|
|
|
sha256 = "0x01zpmxi37jr7j2az2bd8902h7zhkpg6kpvc8xmll9f7703zz2l";
|
2017-02-03 22:58:22 +01:00
|
|
|
};
|
|
|
|
|
2017-05-02 13:06:43 +02:00
|
|
|
propagatedBuildInputs = with pythonPackages; [ neovim psutil ];
|
2017-02-10 17:43:42 +01:00
|
|
|
|
|
|
|
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;
|
|
|
|
};
|
2017-02-03 22:58:22 +01:00
|
|
|
}
|