2021-05-01 02:29:59 +02:00
|
|
|
{ lib
|
|
|
|
, fetchFromGitHub
|
|
|
|
, python3
|
|
|
|
, neovim
|
|
|
|
}:
|
2017-02-03 22:58:22 +01:00
|
|
|
|
2021-01-15 14:21:58 +01:00
|
|
|
with lib;
|
2017-02-10 17:43:42 +01:00
|
|
|
|
2021-05-01 02:29:59 +02:00
|
|
|
with python3.pkgs; buildPythonApplication rec {
|
2018-06-23 15:27:58 +02:00
|
|
|
pname = "neovim-remote";
|
2020-01-07 04:10:52 +01:00
|
|
|
version = "2.4.0";
|
2017-02-03 22:58:22 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "mhinz";
|
|
|
|
repo = "neovim-remote";
|
2018-05-28 14:59:57 +02:00
|
|
|
rev = "v${version}";
|
2020-01-07 04:10:52 +01:00
|
|
|
sha256 = "0jlw0qksak4bdzddpsj74pm2f2bgpj3cwrlspdjjy0j9qzg0mpl9";
|
2017-02-03 22:58:22 +01:00
|
|
|
};
|
|
|
|
|
2021-05-01 02:29:59 +02:00
|
|
|
propagatedBuildInputs = [
|
2020-02-13 20:24:22 +01:00
|
|
|
pynvim
|
|
|
|
psutil
|
|
|
|
setuptools
|
|
|
|
];
|
2017-02-10 17:43:42 +01:00
|
|
|
|
2021-05-01 02:29:59 +02: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 17:43:42 +01:00
|
|
|
meta = {
|
|
|
|
description = "A tool that helps controlling nvim processes from a terminal";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://github.com/mhinz/neovim-remote/";
|
2017-02-10 17:43:42 +01:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ edanaher ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
2017-02-03 22:58:22 +01:00
|
|
|
}
|