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:
parent
d5ee631b92
commit
f00590bbff
|
@ -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";
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue