2017-09-05 09:16:41 +00:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, pythonOlder
|
2018-02-12 11:05:12 +00:00
|
|
|
, attrs
|
2017-09-05 09:16:41 +00:00
|
|
|
, chardet
|
|
|
|
, multidict
|
|
|
|
, async-timeout
|
|
|
|
, yarl
|
2018-02-02 14:13:31 +00:00
|
|
|
, idna-ssl
|
2017-09-05 09:16:41 +00:00
|
|
|
, pytest
|
|
|
|
, gunicorn
|
2018-02-02 14:13:31 +00:00
|
|
|
, pytest-mock
|
2018-04-04 17:31:03 +00:00
|
|
|
, async_generator
|
2018-06-23 10:02:20 +00:00
|
|
|
, pytestrunner
|
|
|
|
, pytest-timeout
|
2017-09-05 09:16:41 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "aiohttp";
|
2018-10-27 12:31:32 +00:00
|
|
|
version = "3.4.4";
|
2017-09-05 09:16:41 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2018-10-27 12:31:32 +00:00
|
|
|
sha256 = "1ykm6kdjkrg556j0zd7dx2l1rsrbh0d9g27ivr6dmaahz9pyrbsi";
|
2017-09-05 09:16:41 +00:00
|
|
|
};
|
|
|
|
|
2018-03-07 21:53:54 +00:00
|
|
|
disabled = pythonOlder "3.5";
|
2017-09-05 09:16:41 +00:00
|
|
|
|
2018-06-23 10:02:20 +00:00
|
|
|
checkInputs = [ pytest gunicorn pytest-mock async_generator pytestrunner pytest-timeout ];
|
2017-09-05 09:16:41 +00: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 09:16:41 +00:00
|
|
|
|
2018-06-23 10:02:20 +00: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 09:16:41 +00:00
|
|
|
};
|
2018-01-23 16:30:09 +00:00
|
|
|
}
|