pypy: compile also curses

This commit is contained in:
Domen Kožar 2014-08-30 23:00:46 +02:00
parent 188f0796b9
commit df98dda81d
2 changed files with 3 additions and 3 deletions

View file

@ -85,7 +85,7 @@ let
ln -s $out/pypy-c/lib-python/${pythonVersion} $out/lib/${libPrefix}
# verify cffi modules
$out/bin/pypy -c "import Tkinter;import sqlite3"
$out/bin/pypy -c "import Tkinter;import sqlite3;import curses"
# make sure pypy finds sqlite3 library
wrapProgram "$out/bin/pypy" \

View file

@ -1521,11 +1521,11 @@ rec {
};
cffi = buildPythonPackage rec {
name = "cffi-0.7.2";
name = "cffi-0.8.6";
src = fetchurl {
url = "http://pypi.python.org/packages/source/c/cffi/${name}.tar.gz";
md5 = "d329f5cb2053fd31dafc02e2c9ef0299";
md5 = "474b5a68299a6f05009171de1dc91be6";
};
propagatedBuildInputs = [ pkgs.libffi pycparser ];