summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorDomen Kožar <domen@dev.si>2014-08-27 11:18:59 +0200
committerDomen Kožar <domen@dev.si>2014-08-27 11:20:24 +0200
commitdf3006679071421d57af4cfdcc53cee07b3157d6 (patch)
treebb6cef393dc9b1c822f12df330813ae1da1ff1d9 /pkgs
parent005f78e7393b16fa0cbe53b329dad8cf2b071202 (diff)
pypy: test sqlite3 and verify the module
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/interpreters/pypy/2.3/default.nix5
1 files changed, 2 insertions, 3 deletions
diff --git a/pkgs/development/interpreters/pypy/2.3/default.nix b/pkgs/development/interpreters/pypy/2.3/default.nix
index abf12a66ed81c..f31bc731a32ff 100644
--- a/pkgs/development/interpreters/pypy/2.3/default.nix
+++ b/pkgs/development/interpreters/pypy/2.3/default.nix
@@ -67,9 +67,8 @@ let
        # disable socket because it has two actual network tests that fail
        # disable test_mhlib because it fails for unknown reason
        # disable test_multiprocessing due to transient errors
-       # disable sqlite3 due to https://bugs.pypy.org/issue1740
        # disable test_os because test_urandom_failure fails
-      ./pypy-c ./pypy/test_all.py --pypy=./pypy-c -k '-test_sqlite -test_socket -test_os -test_shutil -test_mhlib -test_multiprocessing' lib-python
+      ./pypy-c ./pypy/test_all.py --pypy=./pypy-c -k '-test_socket -test_os -test_shutil -test_mhlib -test_multiprocessing' lib-python
     '';
 
     installPhase = ''
@@ -84,7 +83,7 @@ let
        ln -s $out/pypy-c/lib-python/${pythonVersion} $out/lib/${libPrefix}
 
        # verify cffi modules
-       $out/bin/pypy -c "import Tkinter"
+       $out/bin/pypy -c "import Tkinter;import sqlite3"
 
        # TODO: compile python files?
     '';