mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 18:03:04 +00:00
python-gui: init at 1.0.2, fixes #14958
This commit is contained in:
parent
b42d6718b0
commit
953bb5e7ca
@ -25790,9 +25790,17 @@ in modules // {
|
|||||||
|
|
||||||
neovim_gui = buildPythonPackage rec {
|
neovim_gui = buildPythonPackage rec {
|
||||||
name = "neovim-pygui-${self.neovim.version}";
|
name = "neovim-pygui-${self.neovim.version}";
|
||||||
|
version = "0.1.2";
|
||||||
disabled = !isPy27;
|
disabled = !isPy27;
|
||||||
|
|
||||||
src = self.neovim.src;
|
src = pkgs.fetchFromGitHub {
|
||||||
|
owner = "neovim";
|
||||||
|
repo = "python-gui";
|
||||||
|
rev = version;
|
||||||
|
sha256 = "0sc5apxwxgfj57q7d9cih404jgvczbp7slz5z8wqdyxpxlb42pn2";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = with self; [ neovim ];
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
self.msgpack
|
self.msgpack
|
||||||
|
Loading…
Reference in New Issue
Block a user