2017-09-05 10:16:41 +01:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, pythonOlder
|
2018-02-12 11:05:12 +00:00
|
|
|
, attrs
|
2017-09-05 10:16:41 +01:00
|
|
|
, chardet
|
|
|
|
, multidict
|
|
|
|
, async-timeout
|
|
|
|
, yarl
|
2018-02-02 14:13:31 +00:00
|
|
|
, idna-ssl
|
2017-09-05 10:16:41 +01:00
|
|
|
, pytest
|
|
|
|
, gunicorn
|
2018-02-02 14:13:31 +00:00
|
|
|
, pytest-mock
|
2018-04-04 18:31:03 +01:00
|
|
|
, async_generator
|
2018-06-23 11:02:20 +01:00
|
|
|
, pytestrunner
|
|
|
|
, pytest-timeout
|
2017-09-05 10:16:41 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "aiohttp";
|
2018-06-12 17:25:08 +01:00
|
|
|
version = "3.3.2";
|
2017-09-05 10:16:41 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2018-06-12 17:25:08 +01:00
|
|
|
sha256 = "f20deec7a3fbaec7b5eb7ad99878427ad2ee4cc16a46732b705e8121cbb3cc12";
|
2017-09-05 10:16:41 +01:00
|
|
|
};
|
|
|
|
|
2018-03-07 21:53:54 +00:00
|
|
|
disabled = pythonOlder "3.5";
|
2017-09-05 10:16:41 +01:00
|
|
|
|
2018-06-23 11:02:20 +01:00
|
|
|
checkInputs = [ pytest gunicorn pytest-mock async_generator pytestrunner pytest-timeout ];
|
2017-09-05 10:16:41 +01:00
|
|
|
|
2018-02-12 11:05:12 +00:00
|
|
|
propagatedBuildInputs = [ attrs chardet multidict async-timeout yarl ]
|
2018-02-02 14:13:31 +00:00
|
|
|
++ lib.optional (pythonOlder "3.7") idna-ssl;
|
2017-09-05 10:16:41 +01:00
|
|
|
|
2018-06-23 11:02:20 +01:00
|
|
|
|
|
|
|
# Several test failures. Need to be looked into.
|
|
|
|
doCheck = false;
|
|
|
|
|
2018-02-02 14:13:31 +00:00
|
|
|
meta = with lib; {
|
|
|
|
description = "Asynchronous HTTP Client/Server for Python and asyncio";
|
|
|
|
license = licenses.asl20;
|
2018-02-12 11:05:12 +00:00
|
|
|
homepage = https://github.com/aio-libs/aiohttp;
|
2018-02-02 14:13:31 +00:00
|
|
|
maintainers = with maintainers; [ dotlambda ];
|
2017-09-05 10:16:41 +01:00
|
|
|
};
|
2018-01-23 16:30:09 +00:00
|
|
|
}
|