2017-02-03 13:58:22 -08:00
|
|
|
{ stdenv, fetchFromGitHub, pythonPackages }:
|
|
|
|
|
2017-02-10 08:43:42 -08:00
|
|
|
with stdenv.lib;
|
|
|
|
|
2017-02-03 13:58:22 -08:00
|
|
|
pythonPackages.buildPythonPackage rec {
|
2018-06-23 06:27:58 -07:00
|
|
|
pname = "neovim-remote";
|
2019-01-16 11:38:19 -08:00
|
|
|
version = "2.1.4";
|
2017-02-03 13:58:22 -08:00
|
|
|
disabled = !pythonPackages.isPy3k;
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "mhinz";
|
|
|
|
repo = "neovim-remote";
|
2018-05-28 05:59:57 -07:00
|
|
|
rev = "v${version}";
|
2019-01-16 11:38:19 -08:00
|
|
|
sha256 = "1s438cbyyzgg96b6639wk1ny6d6p2ywcba41l3r027wzyl7wrn8v";
|
2017-02-03 13:58:22 -08:00
|
|
|
};
|
|
|
|
|
2018-12-08 15:09:57 -08:00
|
|
|
propagatedBuildInputs = with pythonPackages; [ pynvim psutil ];
|
2017-02-10 08:43:42 -08: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 13:58:22 -08:00
|
|
|
}
|