2013-07-23 21:41:27 +01:00
|
|
|
{ stdenv, fetchurl, zlib ? null, zlibSupport ? true, bzip2, pkgconfig, libffi
|
2017-01-01 18:37:02 +00:00
|
|
|
, sqlite, openssl, ncurses, python, expat, tcl, tk, tix, xlibsWrapper, libX11
|
2016-12-04 08:51:12 +00:00
|
|
|
, makeWrapper, callPackage, self, gdbm, db
|
2017-05-19 13:21:58 +01:00
|
|
|
, python-setup-hook
|
2016-12-04 08:51:12 +00:00
|
|
|
# For the Python package set
|
2017-07-15 11:51:46 +01:00
|
|
|
, pkgs, pythonPackages, packageOverrides ? (self: super: {})
|
2016-12-04 08:51:12 +00:00
|
|
|
}:
|
2013-07-23 21:41:27 +01:00
|
|
|
|
|
|
|
assert zlibSupport -> zlib != null;
|
|
|
|
|
|
|
|
let
|
2017-07-15 11:51:46 +01:00
|
|
|
majorVersion = "5.8";
|
2016-12-20 09:16:14 +00:00
|
|
|
minorVersion = "0";
|
2016-09-20 12:01:30 +01:00
|
|
|
minorVersionSuffix = "";
|
|
|
|
pythonVersion = "2.7";
|
|
|
|
version = "${majorVersion}.${minorVersion}${minorVersionSuffix}";
|
2013-07-29 13:52:19 +01:00
|
|
|
libPrefix = "pypy${majorVersion}";
|
2017-05-19 13:21:58 +01:00
|
|
|
sitePackages = "site-packages";
|
2013-07-23 21:41:27 +01:00
|
|
|
|
2017-02-13 10:41:46 +00:00
|
|
|
in stdenv.mkDerivation rec {
|
2013-07-23 21:41:27 +01:00
|
|
|
name = "pypy-${version}";
|
2017-02-13 10:41:46 +00:00
|
|
|
inherit majorVersion version pythonVersion;
|
2013-07-25 11:38:08 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2016-08-17 22:12:09 +01:00
|
|
|
url = "https://bitbucket.org/pypy/pypy/get/release-pypy${pythonVersion}-v${version}.tar.bz2";
|
2017-07-15 11:51:46 +01:00
|
|
|
sha256 = "0dibf1bx4icrbi8zsqk7cfwgwsd3hfx6biz59k8j5rys3fx9z418";
|
2013-07-25 11:38:08 +01:00
|
|
|
};
|
|
|
|
|
2017-07-15 11:51:46 +01:00
|
|
|
patches = [
|
|
|
|
# https://bitbucket.org/pypy/pypy/issues/2604/lib-python-27-test-test_ospy
|
|
|
|
./2604-skip-urandom-fd-test.patch
|
|
|
|
];
|
|
|
|
|
|
|
|
postPatch = ''
|
2017-01-01 18:37:02 +00:00
|
|
|
substituteInPlace "lib-python/2.7/lib-tk/Tix.py" --replace "os.environ.get('TIX_LIBRARY')" "os.environ.get('TIX_LIBRARY') or '${tix}/lib'"
|
pypy: fix pyexpat tests with expat-2.2.0
/cc #16477. /cc @domenKozar (don't know who better),
as I still experience test failures of different kind:
=================================== FAILURES ===================================
_______________________________________ _______________________________________
Traceback (most recent call last):
File "/tmp/nix-build-pypy-5.1.1.drv-0/pypy-pypy-b0a649e90b66/pypy/tool/pytest/run-script/regrverbose.py", line 14, in <module>
indirect_test()
File "/tmp/nix-build-pypy-5.1.1.drv-0/pypy-pypy-b0a649e90b66/lib-python/2.7/test/test_ctypes.py", line 10, in test_main
skipped, testcases = ctypes.test.get_tests(ctypes.test, "test_*.py", verbosity=0)
File "/tmp/nix-build-pypy-5.1.1.drv-0/pypy-pypy-b0a649e90b66/lib-python/2.7/ctypes/test/__init__.py", line 72, in get_tests
mod = __import__(modname, globals(), locals(), ['*'])
File "/tmp/nix-build-pypy-5.1.1.drv-0/pypy-pypy-b0a649e90b66/lib-python/2.7/ctypes/test/test_python_api.py", line 9, in <module>
from _ctypes import PyObj_FromPtr
ImportError: cannot import name 'PyObj_FromPtr'
=========================== short test summary info ============================
FAIL lib-python/2.7/test/test_ctypes.py::unmodified
9 tests deselected by '-knot ( test_ssl or test_urllib2net or test_urllibnet or test_urllib2_localnet or test_socket or test_shutil or test_zipfile64 or test_epoll )'
======= 1 failed, 341 passed, 51 skipped, 9 deselected in 550.97 seconds =======
2016-06-27 16:02:19 +01:00
|
|
|
'';
|
|
|
|
|
2016-10-18 22:12:03 +01:00
|
|
|
buildInputs = [ bzip2 openssl pkgconfig python libffi ncurses expat sqlite tk tcl xlibsWrapper libX11 makeWrapper gdbm db ]
|
2017-07-15 11:51:46 +01:00
|
|
|
++ (with pythonPackages; [ pycparser ])
|
2014-12-17 18:11:30 +00:00
|
|
|
++ stdenv.lib.optional (stdenv ? cc && stdenv.cc.libc != null) stdenv.cc.libc
|
2013-07-25 11:38:08 +01:00
|
|
|
++ stdenv.lib.optional zlibSupport zlib;
|
2013-07-23 21:41:27 +01:00
|
|
|
|
2016-08-24 23:35:52 +01:00
|
|
|
hardeningDisable = stdenv.lib.optional stdenv.isi686 "pic";
|
|
|
|
|
2016-04-14 17:00:39 +01:00
|
|
|
C_INCLUDE_PATH = stdenv.lib.makeSearchPathOutput "dev" "include" buildInputs;
|
|
|
|
LIBRARY_PATH = stdenv.lib.makeLibraryPath buildInputs;
|
|
|
|
LD_LIBRARY_PATH = stdenv.lib.makeLibraryPath (stdenv.lib.filter (x : x.outPath != stdenv.cc.libc.outPath or "") buildInputs);
|
2013-07-25 12:42:20 +01:00
|
|
|
|
2013-07-23 21:41:27 +01:00
|
|
|
preConfigure = ''
|
2014-08-26 08:57:29 +01:00
|
|
|
# hint pypy to find nix ncurses
|
2013-07-23 21:41:27 +01:00
|
|
|
substituteInPlace pypy/module/_minimal_curses/fficurses.py \
|
2015-10-05 19:32:54 +01:00
|
|
|
--replace "/usr/include/ncurses/curses.h" "${ncurses.dev}/include/curses.h" \
|
|
|
|
--replace "ncurses/curses.h" "${ncurses.dev}/include/curses.h" \
|
|
|
|
--replace "ncurses/term.h" "${ncurses.dev}/include/term.h" \
|
2013-08-23 16:05:50 +01:00
|
|
|
--replace "libraries=['curses']" "libraries=['ncurses']"
|
2014-08-26 08:57:29 +01:00
|
|
|
|
|
|
|
# tkinter hints
|
2015-07-15 18:40:56 +01:00
|
|
|
substituteInPlace lib_pypy/_tkinter/tklib_build.py \
|
2014-08-26 08:57:29 +01:00
|
|
|
--replace "'/usr/include/tcl'" "'${tk}/include', '${tcl}/include'" \
|
2015-07-15 18:40:56 +01:00
|
|
|
--replace "linklibs = ['tcl' + _ver, 'tk' + _ver]" "linklibs=['${tcl.libPrefix}', '${tk.libPrefix}']" \
|
2014-08-26 08:57:29 +01:00
|
|
|
--replace "libdirs = []" "libdirs = ['${tk}/lib', '${tcl}/lib']"
|
2014-08-26 11:25:51 +01:00
|
|
|
|
2015-10-13 21:30:30 +01:00
|
|
|
sed -i "s@libraries=\['sqlite3'\]\$@libraries=['sqlite3'], include_dirs=['${sqlite.dev}/include'], library_dirs=['${sqlite.out}/lib']@" lib_pypy/_sqlite3_build.py
|
2013-07-23 21:41:27 +01:00
|
|
|
'';
|
|
|
|
|
2016-01-11 19:40:49 +00:00
|
|
|
buildPhase = ''
|
2016-10-06 19:34:35 +01:00
|
|
|
${python.interpreter} rpython/bin/rpython --make-jobs="$NIX_BUILD_CORES" -Ojit --batch pypy/goal/targetpypystandalone.py --withmod-_minimal_curses --withmod-unicodedata --withmod-thread --withmod-bz2 --withmod-_multiprocessing
|
2016-01-11 19:40:49 +00:00
|
|
|
'';
|
|
|
|
|
2017-05-19 13:21:58 +01:00
|
|
|
setupHook = python-setup-hook sitePackages;
|
2013-07-25 11:38:08 +01:00
|
|
|
|
2015-07-15 18:40:56 +01:00
|
|
|
postBuild = ''
|
|
|
|
cd ./lib_pypy
|
|
|
|
../pypy-c ./_audioop_build.py
|
|
|
|
../pypy-c ./_curses_build.py
|
2015-07-17 18:00:16 +01:00
|
|
|
../pypy-c ./_pwdgrp_build.py
|
2015-07-15 18:40:56 +01:00
|
|
|
../pypy-c ./_sqlite3_build.py
|
2015-07-17 18:00:16 +01:00
|
|
|
../pypy-c ./_syslog_build.py
|
2015-07-15 18:40:56 +01:00
|
|
|
../pypy-c ./_tkinter/tklib_build.py
|
|
|
|
cd ..
|
|
|
|
'';
|
|
|
|
|
2013-07-25 11:38:08 +01:00
|
|
|
doCheck = true;
|
|
|
|
checkPhase = ''
|
2015-10-05 19:32:54 +01:00
|
|
|
export TERMINFO="${ncurses.out}/share/terminfo/";
|
2013-07-26 13:36:53 +01:00
|
|
|
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
|
2016-01-10 23:33:36 +00:00
|
|
|
# disable test_urllib2net, test_urllib2_localnet, and test_urllibnet because they require networking (example.com)
|
2014-12-16 16:11:34 +00: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
|
2016-05-11 17:32:30 +01:00
|
|
|
# disable test_zipfile64 because it causes ENOSPACE
|
2017-07-15 11:51:46 +01:00
|
|
|
./pypy-c ./pypy/test_all.py --pypy=./pypy-c -k 'not ( test_ssl or test_urllib2net or test_urllibnet or test_urllib2_localnet or test_socket or test_shutil or test_zipfile64 )' lib-python
|
2013-07-25 11:38:08 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
installPhase = ''
|
2013-07-29 13:52:19 +01:00
|
|
|
mkdir -p $out/{bin,include,lib,pypy-c}
|
|
|
|
|
2013-07-25 12:42:20 +01:00
|
|
|
cp -R {include,lib_pypy,lib-python,pypy-c} $out/pypy-c
|
2015-02-08 19:43:32 +00:00
|
|
|
cp libpypy-c.so $out/lib/
|
2013-07-25 12:42:20 +01:00
|
|
|
ln -s $out/pypy-c/pypy-c $out/bin/pypy
|
2013-07-25 11:38:08 +01:00
|
|
|
chmod +x $out/bin/pypy
|
2013-07-29 13:52:19 +01: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-08-26 15:35:48 +01:00
|
|
|
# We must wrap the original, not the symlink.
|
|
|
|
# PyPy uses argv[0] to find its standard library, and while it knows
|
|
|
|
# how to follow symlinks, it doesn't know about wrappers. So, it
|
|
|
|
# will think the wrapper is the original. As long as the wrapper has
|
|
|
|
# the same path as the original, this is OK.
|
|
|
|
wrapProgram "$out/pypy-c/pypy-c" \
|
2015-02-08 19:43:32 +00:00
|
|
|
--set LD_LIBRARY_PATH "${LD_LIBRARY_PATH}:$out/lib" \
|
|
|
|
--set LIBRARY_PATH "${LIBRARY_PATH}:$out/lib"
|
|
|
|
|
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"
|
2016-09-20 12:16:26 +01:00
|
|
|
|
|
|
|
# Python on Nix is not manylinux1 compatible. https://github.com/NixOS/nixpkgs/issues/18484
|
|
|
|
echo "manylinux1_compatible=False" >> $out/lib/${libPrefix}/_manylinux.py
|
2013-07-25 11:38:08 +01:00
|
|
|
'';
|
|
|
|
|
2016-12-04 08:51:12 +00:00
|
|
|
passthru = let
|
|
|
|
pythonPackages = callPackage ../../../../../top-level/python-packages.nix {python=self; overrides=packageOverrides;};
|
|
|
|
in rec {
|
2017-05-19 13:21:58 +01:00
|
|
|
inherit zlibSupport libPrefix sitePackages;
|
2013-07-27 19:51:54 +01:00
|
|
|
executable = "pypy";
|
2014-08-23 16:38:28 +01:00
|
|
|
isPypy = true;
|
2016-07-07 13:05:05 +01:00
|
|
|
buildEnv = callPackage ../../wrapper.nix { python = self; };
|
2014-11-12 23:42:12 +00:00
|
|
|
interpreter = "${self}/bin/${executable}";
|
2016-12-04 08:51:12 +00:00
|
|
|
withPackages = import ../../with-packages.nix { inherit buildEnv pythonPackages;};
|
|
|
|
pkgs = pythonPackages;
|
2013-07-23 21:41:27 +01:00
|
|
|
};
|
|
|
|
|
2015-02-08 19:43:32 +00:00
|
|
|
enableParallelBuilding = true; # almost no parallelization without STM
|
2013-07-23 21:41:27 +01:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2014-08-29 12:49:04 +01:00
|
|
|
homepage = http://pypy.org/;
|
2017-07-15 11:51:46 +01:00
|
|
|
description = "Fast, compliant alternative implementation of the Python language (2.7.13)";
|
2013-07-23 21:41:27 +01:00
|
|
|
license = licenses.mit;
|
2014-02-08 19:27:57 +00:00
|
|
|
platforms = platforms.linux;
|
2016-05-17 12:57:28 +01:00
|
|
|
maintainers = with maintainers; [ domenkozar ];
|
2013-07-23 21:41:27 +01:00
|
|
|
};
|
2017-02-13 10:41:46 +00:00
|
|
|
}
|