nixpkgs/pkgs/development/interpreters/pypy/2.4/default.nix

115 lines
4.6 KiB
Nix
Raw Normal View History

2013-07-23 21:41:27 +01:00
{ stdenv, fetchurl, zlib ? null, zlibSupport ? true, bzip2, pkgconfig, libffi
, sqlite, openssl, ncurses, pythonFull, expat, tcl, tk, x11, libX11
, makeWrapper }:
2013-07-23 21:41:27 +01:00
assert zlibSupport -> zlib != null;
let
2014-09-23 17:24:00 +01:00
majorVersion = "2.4";
version = "${majorVersion}.0";
pythonVersion = "2.7";
libPrefix = "pypy${majorVersion}";
2013-07-23 21:41:27 +01:00
pypy = stdenv.mkDerivation rec {
name = "pypy-${version}";
inherit majorVersion version;
src = fetchurl {
2014-06-08 21:10:53 +01:00
url = "https://bitbucket.org/pypy/pypy/get/release-${version}.tar.bz2";
2014-09-23 17:24:00 +01:00
sha256 = "1lhk86clnkj305dxa6xr9wjib6ckf6xxl6qj0bq20vqh80nfq3by";
};
buildInputs = [ bzip2 openssl pkgconfig pythonFull libffi ncurses expat sqlite tk tcl x11 libX11 makeWrapper ]
++ stdenv.lib.optional (stdenv ? gcc && stdenv.gcc.libc != null) stdenv.gcc.libc
++ stdenv.lib.optional zlibSupport zlib;
2013-07-23 21:41:27 +01:00
C_INCLUDE_PATH = stdenv.lib.concatStringsSep ":" (map (p: "${p}/include") buildInputs);
LIBRARY_PATH = stdenv.lib.concatStringsSep ":" (map (p: "${p}/lib") buildInputs);
LD_LIBRARY_PATH = stdenv.lib.concatStringsSep ":" (map (p: "${p}/lib")
(stdenv.lib.filter (x : x.outPath != stdenv.gcc.libc.outPath or "") buildInputs));
2013-07-23 21:41:27 +01:00
preConfigure = ''
substituteInPlace Makefile \
--replace "-Ojit" "-Ojit --batch" \
--replace "pypy/goal/targetpypystandalone.py" "pypy/goal/targetpypystandalone.py --withmod-_minimal_curses --withmod-unicodedata --withmod-thread --withmod-bz2 --withmod-_multiprocessing"
2013-07-23 21:41:27 +01:00
# we are using cpython and not pypy to do translation
substituteInPlace rpython/bin/rpython \
--replace "/usr/bin/env pypy" "${pythonFull}/bin/python"
substituteInPlace pypy/goal/targetpypystandalone.py \
--replace "/usr/bin/env pypy" "${pythonFull}/bin/python"
# hint pypy to find nix ncurses
2013-07-23 21:41:27 +01:00
substituteInPlace pypy/module/_minimal_curses/fficurses.py \
--replace "/usr/include/ncurses/curses.h" "${ncurses}/include/curses.h" \
--replace "ncurses/curses.h" "${ncurses}/include/curses.h" \
--replace "ncurses/term.h" "${ncurses}/include/term.h" \
2013-08-23 16:05:50 +01:00
--replace "libraries=['curses']" "libraries=['ncurses']"
# tkinter hints
substituteInPlace lib_pypy/_tkinter/tklib.py \
--replace "'/usr/include/tcl'" "'${tk}/include', '${tcl}/include'" \
--replace "linklibs=['tcl', 'tk']" "linklibs=['tcl8.5', 'tk8.5']" \
--replace "libdirs = []" "libdirs = ['${tk}/lib', '${tcl}/lib']"
2014-08-26 11:25:51 +01:00
2014-08-26 18:50:32 +01:00
sed -i "s@libraries=\['sqlite3'\]\$@libraries=['sqlite3'], include_dirs=['${sqlite}/include'], library_dirs=['${sqlite}/lib']@" lib_pypy/_sqlite3.py
2013-07-23 21:41:27 +01:00
'';
2013-08-23 11:41:48 +01:00
setupHook = ./setup-hook.sh;
doCheck = true;
checkPhase = ''
2013-07-26 13:36:53 +01:00
export TERMINFO="${ncurses}/share/terminfo/";
export TERM="xterm";
export HOME="$TMPDIR";
2013-07-26 10:03:25 +01:00
# disable shutils because it assumes gid 0 exists
# disable socket because it has two actual network tests that fail
2013-12-21 05:09:16 +00:00
# disable test_mhlib because it fails for unknown reason
2014-08-27 18:04:38 +01:00
# disable sqlite3 due to https://bugs.pypy.org/issue1740
# disable test_multiprocessing due to transient errors
2014-06-09 17:52:24 +01:00
# disable test_os because test_urandom_failure fails
# disable test_urllib2net and test_urllibnet because it requires networking (example.com)
./pypy-c ./pypy/test_all.py --pypy=./pypy-c -k 'not (test_sqlite or test_urllib2net or test_urllibnet or test_socket or test_os or test_shutil or test_mhlib or test_multiprocessing)' lib-python
'';
installPhase = ''
mkdir -p $out/{bin,include,lib,pypy-c}
cp -R {include,lib_pypy,lib-python,pypy-c} $out/pypy-c
ln -s $out/pypy-c/pypy-c $out/bin/pypy
chmod +x $out/bin/pypy
# other packages expect to find stuff according to libPrefix
ln -s $out/pypy-c/include $out/include/${libPrefix}
ln -s $out/pypy-c/lib-python/${pythonVersion} $out/lib/${libPrefix}
2014-08-24 09:13:55 +01:00
# verify cffi modules
2014-08-30 22:00:46 +01:00
$out/bin/pypy -c "import Tkinter;import sqlite3;import curses"
2014-08-24 09:13:55 +01:00
# make sure pypy finds sqlite3 library
wrapProgram "$out/bin/pypy" \
--set LD_LIBRARY_PATH "${LD_LIBRARY_PATH}" \
--set LIBRARY_PATH "${LIBRARY_PATH}"
'';
2013-07-23 21:41:27 +01:00
passthru = {
inherit zlibSupport libPrefix;
2013-07-27 19:51:54 +01:00
executable = "pypy";
isPypy = true;
2013-07-23 21:41:27 +01:00
};
enableParallelBuilding = true;
meta = with stdenv.lib; {
homepage = http://pypy.org/;
description = "Fast, compliant alternative implementation of the Python language (2.7.3)";
2013-07-23 21:41:27 +01:00
license = licenses.mit;
2014-02-08 19:27:57 +00:00
platforms = platforms.linux;
2013-07-23 21:41:27 +01:00
maintainers = with maintainers; [ iElectric ];
};
};
2013-07-23 22:24:51 +01:00
in pypy