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";
|
2020-01-07 03:10:52 +00:00
|
|
|
version = "2.4.0";
|
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}";
|
2020-01-07 03:10:52 +00:00
|
|
|
sha256 = "0jlw0qksak4bdzddpsj74pm2f2bgpj3cwrlspdjjy0j9qzg0mpl9";
|
2017-02-03 21:58:22 +00:00
|
|
|
};
|
|
|
|
|
2020-02-13 19:24:22 +00:00
|
|
|
propagatedBuildInputs = with pythonPackages; [
|
|
|
|
pynvim
|
|
|
|
psutil
|
|
|
|
setuptools
|
|
|
|
];
|
2017-02-10 16:43:42 +00:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "A tool that helps controlling nvim processes from a terminal";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/mhinz/neovim-remote/";
|
2017-02-10 16:43:42 +00:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ edanaher ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
2017-02-03 21:58:22 +00:00
|
|
|
}
|