2013-07-23 22:41:27 +02:00
|
|
|
{ stdenv, fetchurl, zlib ? null, zlibSupport ? true, bzip2, pkgconfig, libffi
|
2014-08-29 13:49:04 +02:00
|
|
|
, sqlite, openssl, ncurses, pythonFull, expat, tcl, tk, x11, libX11
|
2014-10-19 19:48:07 +02:00
|
|
|
, makeWrapper, callPackage, self }:
|
2013-07-23 22:41:27 +02:00
|
|
|
|
|
|
|
assert zlibSupport -> zlib != null;
|
|
|
|
|
|
|
|
let
|
|
|
|
|
2015-06-01 18:48:24 +02:00
|
|
|
majorVersion = "2.6";
|
|
|
|
version = "${majorVersion}.0";
|
2013-07-29 14:52:19 +02:00
|
|
|
libPrefix = "pypy${majorVersion}";
|
2013-07-23 22:41:27 +02:00
|
|
|
|
|
|
|
pypy = stdenv.mkDerivation rec {
|
|
|
|
name = "pypy-${version}";
|
2015-01-24 11:38:54 +01:00
|
|
|
pythonVersion = "2.7";
|
2013-07-23 22:41:27 +02:00
|
|
|
|
2013-07-25 12:38:08 +02:00
|
|
|
inherit majorVersion version;
|
|
|
|
|
|
|
|
src = fetchurl {
|
2014-06-08 22:10:53 +02:00
|
|
|
url = "https://bitbucket.org/pypy/pypy/get/release-${version}.tar.bz2";
|
2015-06-01 18:48:24 +02:00
|
|
|
sha256 = "0xympj874cnjpxj68xm5gllq2f8bbvz8hr0md8mh1yd6fgzzxibh";
|
2013-07-25 12:38:08 +02:00
|
|
|
};
|
|
|
|
|
2014-08-29 13:49:04 +02:00
|
|
|
buildInputs = [ bzip2 openssl pkgconfig pythonFull libffi ncurses expat sqlite tk tcl x11 libX11 makeWrapper ]
|
2014-12-17 19:11:30 +01:00
|
|
|
++ stdenv.lib.optional (stdenv ? cc && stdenv.cc.libc != null) stdenv.cc.libc
|
2013-07-25 12:38:08 +02:00
|
|
|
++ stdenv.lib.optional zlibSupport zlib;
|
2013-07-23 22:41:27 +02:00
|
|
|
|
2013-07-25 13:42:20 +02:00
|
|
|
C_INCLUDE_PATH = stdenv.lib.concatStringsSep ":" (map (p: "${p}/include") buildInputs);
|
|
|
|
LIBRARY_PATH = stdenv.lib.concatStringsSep ":" (map (p: "${p}/lib") buildInputs);
|
2015-01-14 16:02:01 +01:00
|
|
|
LD_LIBRARY_PATH = stdenv.lib.concatStringsSep ":" (map (p: "${p}/lib")
|
2014-12-17 19:11:30 +01:00
|
|
|
(stdenv.lib.filter (x : x.outPath != stdenv.cc.libc.outPath or "") buildInputs));
|
2013-07-25 13:42:20 +02:00
|
|
|
|
2013-07-23 22:41:27 +02:00
|
|
|
preConfigure = ''
|
|
|
|
substituteInPlace Makefile \
|
|
|
|
--replace "-Ojit" "-Ojit --batch" \
|
2013-07-26 23:12:05 +02:00
|
|
|
--replace "pypy/goal/targetpypystandalone.py" "pypy/goal/targetpypystandalone.py --withmod-_minimal_curses --withmod-unicodedata --withmod-thread --withmod-bz2 --withmod-_multiprocessing"
|
2013-07-23 22:41:27 +02: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"
|
|
|
|
|
2014-08-26 09:57:29 +02:00
|
|
|
# hint pypy to find nix ncurses
|
2013-07-23 22:41:27 +02: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 17:05:50 +02:00
|
|
|
--replace "libraries=['curses']" "libraries=['ncurses']"
|
2014-08-26 09:57:29 +02:00
|
|
|
|
|
|
|
# tkinter hints
|
2015-07-15 19:40:56 +02:00
|
|
|
substituteInPlace lib_pypy/_tkinter/tklib_build.py \
|
2014-08-26 09:57:29 +02:00
|
|
|
--replace "'/usr/include/tcl'" "'${tk}/include', '${tcl}/include'" \
|
2015-07-15 19:40:56 +02:00
|
|
|
--replace "linklibs = ['tcl' + _ver, 'tk' + _ver]" "linklibs=['${tcl.libPrefix}', '${tk.libPrefix}']" \
|
2014-08-26 09:57:29 +02:00
|
|
|
--replace "libdirs = []" "libdirs = ['${tk}/lib', '${tcl}/lib']"
|
2014-08-26 12:25:51 +02:00
|
|
|
|
2015-07-15 19:40:56 +02:00
|
|
|
sed -i "s@libraries=\['sqlite3'\]\$@libraries=['sqlite3'], include_dirs=['${sqlite}/include'], library_dirs=['${sqlite}/lib']@" lib_pypy/_sqlite3_build.py
|
2013-07-23 22:41:27 +02:00
|
|
|
'';
|
|
|
|
|
2013-08-23 12:41:48 +02:00
|
|
|
setupHook = ./setup-hook.sh;
|
2013-07-25 12:38:08 +02:00
|
|
|
|
2015-07-15 19:40:56 +02:00
|
|
|
postBuild = ''
|
|
|
|
cd ./lib_pypy
|
|
|
|
../pypy-c ./_audioop_build.py
|
|
|
|
../pypy-c ./_curses_build.py
|
2015-07-17 19:00:16 +02:00
|
|
|
../pypy-c ./_pwdgrp_build.py
|
2015-07-15 19:40:56 +02:00
|
|
|
../pypy-c ./_sqlite3_build.py
|
2015-07-17 19:00:16 +02:00
|
|
|
../pypy-c ./_syslog_build.py
|
2015-07-15 19:40:56 +02:00
|
|
|
../pypy-c ./_tkinter/tklib_build.py
|
|
|
|
cd ..
|
|
|
|
'';
|
|
|
|
|
2013-07-25 12:38:08 +02:00
|
|
|
doCheck = true;
|
|
|
|
checkPhase = ''
|
2013-07-26 14:36:53 +02:00
|
|
|
export TERMINFO="${ncurses}/share/terminfo/";
|
|
|
|
export TERM="xterm";
|
|
|
|
export HOME="$TMPDIR";
|
2013-07-26 11:03:25 +02:00
|
|
|
# disable shutils because it assumes gid 0 exists
|
|
|
|
# disable socket because it has two actual network tests that fail
|
2013-12-21 06:09:16 +01:00
|
|
|
# disable test_mhlib because it fails for unknown reason
|
2014-08-27 19:04:38 +02:00
|
|
|
# disable sqlite3 due to https://bugs.pypy.org/issue1740
|
2014-02-08 20:26:23 +01:00
|
|
|
# disable test_multiprocessing due to transient errors
|
2014-06-09 18:52:24 +02:00
|
|
|
# disable test_os because test_urandom_failure fails
|
2014-09-26 14:58:37 +02:00
|
|
|
# disable test_urllib2net and test_urllibnet because it requires networking (example.com)
|
2014-10-16 11:14:42 +02:00
|
|
|
# disable test_zipfile64 because it randomly timeouts
|
2014-12-15 14:17:11 +01:00
|
|
|
# disable test_cpickle because timeouts
|
2014-12-16 17:11:34 +01:00
|
|
|
# disable test_ssl because no shared cipher' not found in '[Errno 1] error:14077410:SSL routines:SSL23_GET_SERVER_HELLO:sslv3 alert handshake failure
|
|
|
|
./pypy-c ./pypy/test_all.py --pypy=./pypy-c -k 'not (test_ssl or test_cpickle or test_sqlite or test_urllib2net or test_urllibnet or test_socket or test_os or test_shutil or test_mhlib or test_multiprocessing or test_zipfile64)' lib-python
|
2013-07-25 12:38:08 +02:00
|
|
|
'';
|
|
|
|
|
|
|
|
installPhase = ''
|
2013-07-29 14:52:19 +02:00
|
|
|
mkdir -p $out/{bin,include,lib,pypy-c}
|
|
|
|
|
2013-07-25 13:42:20 +02:00
|
|
|
cp -R {include,lib_pypy,lib-python,pypy-c} $out/pypy-c
|
2015-02-08 20:43:32 +01:00
|
|
|
cp libpypy-c.so $out/lib/
|
2013-07-25 13:42:20 +02:00
|
|
|
ln -s $out/pypy-c/pypy-c $out/bin/pypy
|
2013-07-25 12:38:08 +02:00
|
|
|
chmod +x $out/bin/pypy
|
2013-07-29 14:52:19 +02:00
|
|
|
|
|
|
|
# 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}
|
|
|
|
|
2015-02-08 20:43:32 +01:00
|
|
|
wrapProgram "$out/bin/pypy" \
|
|
|
|
--set LD_LIBRARY_PATH "${LD_LIBRARY_PATH}:$out/lib" \
|
|
|
|
--set LIBRARY_PATH "${LIBRARY_PATH}:$out/lib"
|
|
|
|
|
2014-08-24 10:13:55 +02:00
|
|
|
# verify cffi modules
|
2014-08-30 23:00:46 +02:00
|
|
|
$out/bin/pypy -c "import Tkinter;import sqlite3;import curses"
|
2013-07-25 12:38:08 +02:00
|
|
|
'';
|
|
|
|
|
2014-11-13 00:42:12 +01:00
|
|
|
passthru = rec {
|
2013-07-29 14:52:19 +02:00
|
|
|
inherit zlibSupport libPrefix;
|
2013-07-27 20:51:54 +02:00
|
|
|
executable = "pypy";
|
2014-08-23 17:38:28 +02:00
|
|
|
isPypy = true;
|
2015-02-04 14:11:33 +01:00
|
|
|
buildEnv = callPackage ../python/wrapper.nix { python = self; };
|
2014-11-13 00:42:12 +01:00
|
|
|
interpreter = "${self}/bin/${executable}";
|
2013-07-23 22:41:27 +02:00
|
|
|
};
|
|
|
|
|
2015-02-08 20:43:32 +01:00
|
|
|
enableParallelBuilding = true; # almost no parallelization without STM
|
2013-07-23 22:41:27 +02:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2014-08-29 13:49:04 +02:00
|
|
|
homepage = http://pypy.org/;
|
2015-02-08 20:43:32 +01:00
|
|
|
description = "Fast, compliant alternative implementation of the Python language (2.7.8)";
|
2013-07-23 22:41:27 +02:00
|
|
|
license = licenses.mit;
|
2014-02-08 20:27:57 +01:00
|
|
|
platforms = platforms.linux;
|
2013-07-23 22:41:27 +02:00
|
|
|
maintainers = with maintainers; [ iElectric ];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2013-07-23 23:24:51 +02:00
|
|
|
in pypy
|