2021-05-01 00:29:59 +00:00
|
|
|
{ lib
|
|
|
|
, fetchFromGitHub
|
|
|
|
, python3
|
|
|
|
, neovim
|
|
|
|
}:
|
2017-02-03 21:58:22 +00:00
|
|
|
|
2021-05-01 00:29:59 +00:00
|
|
|
with python3.pkgs; buildPythonApplication rec {
|
2018-06-23 13:27:58 +00:00
|
|
|
pname = "neovim-remote";
|
2022-05-22 08:01:57 +00:00
|
|
|
version = "2.5.1";
|
2017-02-03 21:58:22 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "mhinz";
|
|
|
|
repo = "neovim-remote";
|
2018-05-28 12:59:57 +00:00
|
|
|
rev = "v${version}";
|
2022-05-22 08:01:57 +00:00
|
|
|
sha256 = "0lbz4w8hgxsw4k1pxafrl3rhydrvi5jc6vnsmkvnhh6l6rxlmvmq";
|
2017-02-03 21:58:22 +00:00
|
|
|
};
|
|
|
|
|
2021-05-01 00:29:59 +00:00
|
|
|
propagatedBuildInputs = [
|
2020-02-13 19:24:22 +00:00
|
|
|
pynvim
|
|
|
|
psutil
|
|
|
|
setuptools
|
|
|
|
];
|
2017-02-10 16:43:42 +00:00
|
|
|
|
2021-05-01 00:29:59 +00:00
|
|
|
checkInputs = [
|
|
|
|
neovim
|
|
|
|
pytestCheckHook
|
|
|
|
];
|
|
|
|
|
|
|
|
disabledTests = [
|
|
|
|
# these tests get stuck and never return
|
|
|
|
"test_escape_filenames_properly"
|
|
|
|
"test_escape_single_quotes_in_filenames"
|
|
|
|
"test_escape_double_quotes_in_filenames"
|
|
|
|
];
|
|
|
|
|
2022-03-29 08:45:23 +00:00
|
|
|
meta = with lib; {
|
2017-02-10 16:43:42 +00:00
|
|
|
description = "A tool that helps controlling nvim processes from a terminal";
|
2020-04-01 01:11:51 +00: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;
|
2022-03-29 02:15:31 +00:00
|
|
|
mainProgram = "nvr";
|
2017-02-10 16:43:42 +00:00
|
|
|
};
|
2017-02-03 21:58:22 +00:00
|
|
|
}
|