2017-02-03 21:58:22 +00:00
|
|
|
{ stdenv, fetchFromGitHub, pythonPackages }:
|
|
|
|
|
2017-02-10 16:43:42 +00:00
|
|
|
with stdenv.lib;
|
|
|
|
|
2019-01-27 18:33:49 +00:00
|
|
|
pythonPackages.buildPythonApplication rec {
|
2018-06-23 14:27:58 +01:00
|
|
|
pname = "neovim-remote";
|
2019-10-22 22:53:58 +01:00
|
|
|
version = "2.2.2";
|
2017-02-03 21:58:22 +00:00
|
|
|
disabled = !pythonPackages.isPy3k;
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "mhinz";
|
|
|
|
repo = "neovim-remote";
|
2018-05-28 13:59:57 +01:00
|
|
|
rev = "v${version}";
|
2019-10-22 22:53:58 +01:00
|
|
|
sha256 = "129yjpwn6480rd5na866h4mcr6rf60rqv651hks5fn3ws112n751";
|
2017-02-03 21:58:22 +00:00
|
|
|
};
|
|
|
|
|
2018-12-08 23:09:57 +00:00
|
|
|
propagatedBuildInputs = with pythonPackages; [ pynvim psutil ];
|
2017-02-10 16:43:42 +00: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 21:58:22 +00:00
|
|
|
}
|