13 buildPythonPackage rec {
18 inherit pname version;
19 sha256 = "sha256-OnlTeL3l6AkvvrOhqZvpxhPSaFVC8dsOXG/UZ+7Vbf8=";
26 # Tests require pkgs.neovim,
27 # which we cannot add because of circular dependency.
30 propagatedBuildInputs = [ msgpack ]
31 ++ lib.optional (!isPyPy) greenlet
32 ++ lib.optional (pythonOlder "3.4") trollius;
35 description = "Python client for Neovim";
36 homepage = "https://github.com/neovim/python-client";
37 license = lib.licenses.asl20;
38 maintainers = with lib.maintainers; [ ];