mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 07:46:09 +01:00
python-gui: init at 1.0.2, fixes #14958
This commit is contained in:
parent
b42d6718b0
commit
953bb5e7ca
1 changed files with 9 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue