nixpkgs/pkgs/applications/editors/neovim/neovim-remote.nix

27 lines
708 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, pythonPackages }:
with stdenv.lib;
pythonPackages.buildPythonPackage rec {
name = "neovim-remote-${version}";
2018-05-29 21:28:25 +00:00
version = "2.0.5";
disabled = !pythonPackages.isPy3k;
src = fetchFromGitHub {
owner = "mhinz";
repo = "neovim-remote";
2018-05-28 12:59:57 +00:00
rev = "v${version}";
2018-05-29 21:28:25 +00:00
sha256 = "08qsi61ba5d69ca77layypzvi7nalx4niy97xn4w88jibnbmbrxw";
};
2017-05-02 11:06:43 +00:00
propagatedBuildInputs = with pythonPackages; [ neovim psutil ];
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;
};
}