python38Packages.aiohttp: disable
Looks like "+" operator between futures no longer works. Reported upstream https://github.com/aio-libs/aiohttp/issues/4525
This commit is contained in:
parent
3671932188
commit
35f6a7406d
|
@ -2,6 +2,7 @@
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchPypi
|
, fetchPypi
|
||||||
, pythonOlder
|
, pythonOlder
|
||||||
|
, pythonAtLeast
|
||||||
, attrs
|
, attrs
|
||||||
, chardet
|
, chardet
|
||||||
, multidict
|
, multidict
|
||||||
|
@ -25,14 +26,14 @@
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "aiohttp";
|
pname = "aiohttp";
|
||||||
version = "3.6.2";
|
version = "3.6.2";
|
||||||
|
# https://github.com/aio-libs/aiohttp/issues/4525 python3.8 failures
|
||||||
|
disabled = pythonOlder "3.5" || pythonAtLeast "3.8";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "09pkw6f1790prnrq0k8cqgnf1qy57ll8lpmc6kld09q7zw4vi6i5";
|
sha256 = "09pkw6f1790prnrq0k8cqgnf1qy57ll8lpmc6kld09q7zw4vi6i5";
|
||||||
};
|
};
|
||||||
|
|
||||||
disabled = pythonOlder "3.5";
|
|
||||||
|
|
||||||
checkInputs = [
|
checkInputs = [
|
||||||
pytestrunner pytest gunicorn pytest-timeout async_generator pytest_xdist
|
pytestrunner pytest gunicorn pytest-timeout async_generator pytest_xdist
|
||||||
pytest-mock pytestcov trustme brotlipy freezegun
|
pytest-mock pytestcov trustme brotlipy freezegun
|
||||||
|
|
Loading…
Reference in New Issue