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
|
2017-09-05 09:16:41 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "aiohttp";
|
2018-02-12 11:05:12 +00:00
|
|
|
version = "3.0.1";
|
2017-09-05 09:16:41 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2018-02-12 11:05:12 +00:00
|
|
|
sha256 = "7aee5c0750584946fde40da70f0b28fe769f85182f1171acef18a35fd8ecd221";
|
2017-09-05 09:16:41 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
disabled = pythonOlder "3.4";
|
|
|
|
|
2018-02-10 09:29:11 +00:00
|
|
|
checkInputs = [ pytest gunicorn pytest-mock ];
|
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-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
|
|
|
}
|