neovim: adding python2 and python3 support

neovim:
- possibility to extend neovim (via .override) and passing extraPythonPackages
  or extraPython3Packages
- neovim's python interpreter can be found as nvim-python / nvim-python3
- wrapping nvim binary and setting `g:python_host_prog` and
  `g:python3_host_prog` via --cmd flag

python-packages.nix fixes:
- ordereddict builds for py26 and uses disabled argument to tell this
- trollius builds on all python platforms except 3.4 (where is included in
  standard librarary)
- neovim builds on all python platforms
This commit is contained in:
Rok Garbas 2015-06-11 02:42:20 +02:00
parent 81225f1002
commit f2d7f573af
2 changed files with 71 additions and 27 deletions

View File

@ -1,18 +1,16 @@
{ stdenv, fetchFromGitHub, cmake, gettext, glib, libmsgpack { stdenv, fetchFromGitHub, cmake, gettext, glib, libmsgpack
, libtermkey, libtool, libuv, lpeg, lua, luajit, luaMessagePack , libtermkey, libtool, libuv, lpeg, lua, luajit, luaMessagePack
, luabitop, ncurses, perl, pkgconfig, unibilium , luabitop, ncurses, perl, pkgconfig, unibilium, makeWrapper
, withJemalloc ? true, jemalloc }: , withPython ? true, pythonPackages, extraPythonPackages ? []
, withPython3 ? true, python3Packages, extraPython3Packages ? []
, withJemalloc ? true, jemalloc
}:
let version = "2015-06-09"; in with stdenv.lib;
stdenv.mkDerivation rec {
name = "neovim-${version}";
src = fetchFromGitHub { let
sha256 = "1lycql0lwi7ynrsaln4kxybwvxb9fvganiq3ba4pnpcfgl155k1j";
rev = "6270d431aaeed71e7a8782411f36409ab8e0ee35"; version = "2015-06-09";
repo = "neovim";
owner = "neovim";
};
# Note: this is NOT the libvterm already in nixpkgs, but some NIH silliness: # Note: this is NOT the libvterm already in nixpkgs, but some NIH silliness:
neovimLibvterm = let version = "2015-02-23"; in stdenv.mkDerivation rec { neovimLibvterm = let version = "2015-02-23"; in stdenv.mkDerivation rec {
@ -31,7 +29,7 @@ stdenv.mkDerivation rec {
enableParallelBuilding = true; enableParallelBuilding = true;
meta = with stdenv.lib; { meta = {
description = "VT220/xterm/ECMA-48 terminal emulator library"; description = "VT220/xterm/ECMA-48 terminal emulator library";
homepage = http://www.leonerd.org.uk/code/libvterm/; homepage = http://www.leonerd.org.uk/code/libvterm/;
license = licenses.mit; license = licenses.mit;
@ -40,9 +38,30 @@ stdenv.mkDerivation rec {
}; };
}; };
pythonEnv = pythonPackages.python.buildEnv.override {
extraLibs = [ pythonPackages.neovim ] ++ extraPythonPackages;
ignoreCollisions = true;
};
python3Env = python3Packages.python.buildEnv.override {
extraLibs = [ python3Packages.neovim ] ++ extraPython3Packages;
ignoreCollisions = true;
};
in stdenv.mkDerivation rec {
name = "neovim-${version}";
src = fetchFromGitHub {
sha256 = "1lycql0lwi7ynrsaln4kxybwvxb9fvganiq3ba4pnpcfgl155k1j";
rev = "6270d431aaeed71e7a8782411f36409ab8e0ee35";
repo = "neovim";
owner = "neovim";
};
enableParallelBuilding = true; enableParallelBuilding = true;
buildInputs = [ buildInputs = [
makeWrapper
cmake cmake
glib glib
libtermkey libtermkey
@ -57,7 +76,8 @@ stdenv.mkDerivation rec {
neovimLibvterm neovimLibvterm
pkgconfig pkgconfig
unibilium unibilium
] ++ stdenv.lib.optional withJemalloc jemalloc; ] ++ optional withJemalloc jemalloc;
nativeBuildInputs = [ nativeBuildInputs = [
gettext gettext
]; ];
@ -65,7 +85,20 @@ stdenv.mkDerivation rec {
LUA_CPATH="${lpeg}/lib/lua/${lua.luaversion}/?.so;${luabitop}/lib/lua/5.2/?.so"; LUA_CPATH="${lpeg}/lib/lua/${lua.luaversion}/?.so;${luabitop}/lib/lua/5.2/?.so";
LUA_PATH="${luaMessagePack}/share/lua/5.1/?.lua"; LUA_PATH="${luaMessagePack}/share/lua/5.1/?.lua";
meta = with stdenv.lib; { postInstall = optionalString withPython ''
ln -s ${pythonEnv}/bin/python $out/bin/nvim-python
'' + optionalString withPython3 ''
ln -s ${python3Env}/bin/python $out/bin/nvim-python3
'' + optionalString (withPython || withPython3) ''
wrapProgram $out/bin/nvim --add-flags "${
(optionalString withPython
''--cmd \"let g:python_host_prog='$out/bin/nvim-python'\" '') +
(optionalString withPython3
''--cmd \"let g:python3_host_prog='$out/bin/nvim-python3'\"'')
}"
'';
meta = {
description = "Vim text editor fork focused on extensibility and agility"; description = "Vim text editor fork focused on extensibility and agility";
longDescription = '' longDescription = ''
Neovim is a project that seeks to aggressively refactor Vim in order to: Neovim is a project that seeks to aggressively refactor Vim in order to:

View File

@ -8100,14 +8100,21 @@ let
# }; # };
# }); # });
ordereddict = if isPy26 then (buildPythonPackage { ordereddict = buildPythonPackage rec {
name = "ordereddict-1.1"; name = "ordereddict-1.1";
disabled = !isPy26;
src = pkgs.fetchurl { src = pkgs.fetchurl {
url = "http://pypi.python.org/packages/source/o/ordereddict/ordereddict-1.1.tar.gz"; url = "http://pypi.python.org/packages/source/o/ordereddict/${name}.tar.gz";
md5 = "a0ed854ee442051b249bfad0f638bbec"; md5 = "a0ed854ee442051b249bfad0f638bbec";
}; };
doCheck = false;
}) else null; meta = {
description = "A drop-in substitute for Py2.7's new collections.OrderedDict that works in Python 2.4-2.6.";
license = licenses.bsd3;
maintainers = with maintainers; [ garbas ];
};
};
ply = buildPythonPackage (rec { ply = buildPythonPackage (rec {
name = "ply-3.4"; name = "ply-3.4";
@ -15775,16 +15782,23 @@ let
trollius = buildPythonPackage rec { trollius = buildPythonPackage rec {
version = "1.0.4"; version = "1.0.4";
name = "trollius-${version}"; name = "trollius-${version}";
disabled = ! isPy27; disabled = isPy34;
src = pkgs.fetchurl { src = pkgs.fetchurl {
url = "https://pypi.python.org/packages/source/t/trollius/${name}.tar.gz"; url = "https://pypi.python.org/packages/source/t/trollius/${name}.tar.gz";
md5 = "3631a464d49d0cbfd30ab2918ef2b783"; md5 = "3631a464d49d0cbfd30ab2918ef2b783";
}; };
buildInputs = [ self.mock ]; buildInputs = with self; [ mock ]
++ optional isPy26 unittest2;
propagatedBuildInputs = [ self.futures ]; propagatedBuildInputs = with self; []
++ optional isPy26 ordereddict
++ optional (isPy26 || isPy27 || isPyPy) futures;
patchPhase = optionalString isPy26 ''
sed -i -e "s|test_env_var_debug|skip_test_env_var_debug|" tests/test_tasks.py
'';
meta = { meta = {
description = "Port of the Tulip project (asyncio module, PEP 3156) on Python 2"; description = "Port of the Tulip project (asyncio module, PEP 3156) on Python 2";
@ -15797,18 +15811,15 @@ let
neovim = buildPythonPackage rec { neovim = buildPythonPackage rec {
version = "0.0.36"; version = "0.0.36";
name = "neovim-${version}"; name = "neovim-${version}";
disabled = ! isPy27;
src = pkgs.fetchurl { src = pkgs.fetchurl {
url = "https://pypi.python.org/packages/source/n/neovim/${name}.tar.gz"; url = "https://pypi.python.org/packages/source/n/neovim/${name}.tar.gz";
md5 = "8cdad23402e29c7c5a1e85770e976edf"; md5 = "8cdad23402e29c7c5a1e85770e976edf";
}; };
propagatedBuildInputs = with self; [ propagatedBuildInputs = with self; [ msgpack ]
msgpack ++ optional (!isPyPy) greenlet
trollius ++ optional (!isPy34) trollius;
greenlet
];
meta = { meta = {
description = "Python client for Neovim"; description = "Python client for Neovim";