2021-05-01 01:29:59 +01:00
|
|
|
{ lib
|
|
|
|
, fetchFromGitHub
|
|
|
|
, python3
|
|
|
|
, neovim
|
|
|
|
}:
|
2017-02-03 21:58:22 +00:00
|
|
|
|
2021-01-15 13:21:58 +00:00
|
|
|
with lib;
|
2017-02-10 16:43:42 +00:00
|
|
|
|
2021-05-01 01:29:59 +01:00
|
|
|
with python3.pkgs; 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
|
|
|
|
|
|
|
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
|
|
|
};
|
|
|
|
|
2021-05-01 01:29:59 +01:00
|
|
|
propagatedBuildInputs = [
|
2020-02-13 19:24:22 +00:00
|
|
|
pynvim
|
|
|
|
psutil
|
|
|
|
setuptools
|
|
|
|
];
|
2017-02-10 16:43:42 +00:00
|
|
|
|
2021-05-01 01:29:59 +01: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"
|
|
|
|
];
|
|
|
|
|
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
|
|
|
}
|