python38Packages.uvloop: disable
Tests hang, indicating race condition
This commit is contained in:
parent
aee0249059
commit
3671932188
@ -6,6 +6,7 @@
|
|||||||
, libuv
|
, libuv
|
||||||
, psutil
|
, psutil
|
||||||
, isPy27
|
, isPy27
|
||||||
|
, pythonAtLeast
|
||||||
, CoreServices
|
, CoreServices
|
||||||
, ApplicationServices
|
, ApplicationServices
|
||||||
}:
|
}:
|
||||||
@ -13,7 +14,8 @@
|
|||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "uvloop";
|
pname = "uvloop";
|
||||||
version = "0.14.0";
|
version = "0.14.0";
|
||||||
disabled = isPy27;
|
# python 3.8 hangs on tests, assuming it's subtly broken with race condition
|
||||||
|
disabled = isPy27 || pythonAtLeast "3.8";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
|
Loading…
Reference in New Issue
Block a user