3
0
Fork 0
forked from mirrors/nixpkgs

* Disable the python-nose check, because it fails with ‘This platform

lacks a functioning sem_open implementation, therefore, the required
  synchronization primitives needed will not function, see issue
  3770.’  However, our Python does seem to be built with the necessary
  functionality.  (The statement "from _multiprocessing import
  SemLock" doesn't give an exception.)

svn path=/nixpkgs/trunk/; revision=27230
This commit is contained in:
Eelco Dolstra 2011-05-11 15:03:11 +00:00
parent d5ee631b92
commit f00590bbff

View file

@ -869,6 +869,13 @@ let pythonPackages = python.modules // rec {
sha256 = "0qm6q232h5r071gwfkiszkmfqc60k7abl15bk495lcdkk62m91db";
};
# Fails with This platform lacks a functioning sem_open
# implementation, therefore, the required synchronization
# primitives needed will not function, see issue 3770. However,
# our Python does seem to be built with the necessary
# functionality.
doCheck = false;
meta = {
description = "A unittest-based testing framework for python that makes writing and running tests easier";
};