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
|
2019-01-10 14:11:46 +00:00
|
|
|
, typing-extensions
|
|
|
|
, pytestrunner
|
2017-09-05 10:16:41 +01:00
|
|
|
, pytest
|
|
|
|
, gunicorn
|
2018-06-23 11:02:20 +01:00
|
|
|
, pytest-timeout
|
2019-01-10 14:11:46 +00:00
|
|
|
, async_generator
|
|
|
|
, pytest_xdist
|
|
|
|
, pytestcov
|
|
|
|
, pytest-mock
|
|
|
|
, trustme
|
|
|
|
, brotlipy
|
2017-09-05 10:16:41 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "aiohttp";
|
2019-01-12 13:56:40 +00:00
|
|
|
version = "3.5.4";
|
2017-09-05 10:16:41 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-01-12 13:56:40 +00:00
|
|
|
sha256 = "9c4c83f4fa1938377da32bc2d59379025ceeee8e24b89f72fcbccd8ca22dc9bf";
|
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
|
|
|
|
2019-01-10 14:11:46 +00:00
|
|
|
checkInputs = [
|
|
|
|
pytestrunner pytest gunicorn pytest-timeout async_generator pytest_xdist
|
|
|
|
pytest-mock pytestcov trustme brotlipy
|
|
|
|
];
|
2017-09-05 10:16:41 +01:00
|
|
|
|
2018-02-12 11:05:12 +00:00
|
|
|
propagatedBuildInputs = [ attrs chardet multidict async-timeout yarl ]
|
2019-01-10 14:11:46 +00:00
|
|
|
++ lib.optionals (pythonOlder "3.7") [ idna-ssl typing-extensions ];
|
2018-06-23 11:02:20 +01:00
|
|
|
|
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
|
|
|
}
|