summary refs log tree commit diff
diff options
context:
space:
mode:
authorAnders Kaseorg <andersk@mit.edu>2018-01-18 04:14:45 -0500
committerAnders Kaseorg <andersk@mit.edu>2018-01-18 04:22:57 -0500
commit77e6d6c7f73cb93d655c0cfd9cc6b25503922f52 (patch)
tree4748fdfae184733da7a1af7411ba3a3b221da132
parent11c4ba3f651d6ae3739d058111a1586db807a394 (diff)
downloadnixlib-77e6d6c7f73cb93d655c0cfd9cc6b25503922f52.tar
nixlib-77e6d6c7f73cb93d655c0cfd9cc6b25503922f52.tar.gz
nixlib-77e6d6c7f73cb93d655c0cfd9cc6b25503922f52.tar.bz2
nixlib-77e6d6c7f73cb93d655c0cfd9cc6b25503922f52.tar.lz
nixlib-77e6d6c7f73cb93d655c0cfd9cc6b25503922f52.tar.xz
nixlib-77e6d6c7f73cb93d655c0cfd9cc6b25503922f52.tar.zst
nixlib-77e6d6c7f73cb93d655c0cfd9cc6b25503922f52.zip
pypy: Remove redundant manual building of CFFI extensions
This hardcoded list of CFFI extension modules gets stale when PyPy adds
more, but fortunately the main translation step already builds these now
(hack_for_cffi_modules in pypy/goal/targetpypystandalone.py).

Signed-off-by: Anders Kaseorg <andersk@mit.edu>
-rw-r--r--pkgs/development/interpreters/python/pypy/2.7/default.nix11
1 files changed, 0 insertions, 11 deletions
diff --git a/pkgs/development/interpreters/python/pypy/2.7/default.nix b/pkgs/development/interpreters/python/pypy/2.7/default.nix
index 5769ed63727c..2b9c3f5958b8 100644
--- a/pkgs/development/interpreters/python/pypy/2.7/default.nix
+++ b/pkgs/development/interpreters/python/pypy/2.7/default.nix
@@ -79,17 +79,6 @@ in stdenv.mkDerivation rec {
 
   setupHook = python-setup-hook sitePackages;
 
-  postBuild = ''
-    pushd ./lib_pypy
-    ../pypy-c ./_audioop_build.py
-    ../pypy-c ./_curses_build.py
-    ../pypy-c ./_pwdgrp_build.py
-    ../pypy-c ./_sqlite3_build.py
-    ../pypy-c ./_syslog_build.py
-    ../pypy-c ./_tkinter/tklib_build.py
-    popd
-  '';
-
   doCheck = true;
   checkPhase = ''
     export TERMINFO="${ncurses.out}/share/terminfo/";