python-gui: init at 1.0.2, fixes #14958

This commit is contained in:
Tobias Pflug 2016-05-04 22:23:09 +02:00 committed by Rok Garbas
parent b42d6718b0
commit 953bb5e7ca

View file

@ -25790,9 +25790,17 @@ in modules // {
neovim_gui = buildPythonPackage rec {
name = "neovim-pygui-${self.neovim.version}";
version = "0.1.2";
disabled = !isPy27;
src = self.neovim.src;
src = pkgs.fetchFromGitHub {
owner = "neovim";
repo = "python-gui";
rev = version;
sha256 = "0sc5apxwxgfj57q7d9cih404jgvczbp7slz5z8wqdyxpxlb42pn2";
};
buildInputs = with self; [ neovim ];
propagatedBuildInputs = [
self.msgpack