python3Packages.aiohttp: 2.3.10 -> 3.0.1

This commit is contained in:
Robert Schütz 2018-02-12 12:05:12 +01:00
parent 76723a26f9
commit b431193ad1
1 changed files with 5 additions and 4 deletions

View File

@ -2,6 +2,7 @@
, buildPythonPackage , buildPythonPackage
, fetchPypi , fetchPypi
, pythonOlder , pythonOlder
, attrs
, chardet , chardet
, multidict , multidict
, async-timeout , async-timeout
@ -14,24 +15,24 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "aiohttp"; pname = "aiohttp";
version = "2.3.10"; version = "3.0.1";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "8adda6583ba438a4c70693374e10b60168663ffa6564c5c75d3c7a9055290964"; sha256 = "7aee5c0750584946fde40da70f0b28fe769f85182f1171acef18a35fd8ecd221";
}; };
disabled = pythonOlder "3.4"; disabled = pythonOlder "3.4";
checkInputs = [ pytest gunicorn pytest-mock ]; checkInputs = [ pytest gunicorn pytest-mock ];
propagatedBuildInputs = [ async-timeout chardet multidict yarl ] propagatedBuildInputs = [ attrs chardet multidict async-timeout yarl ]
++ lib.optional (pythonOlder "3.7") idna-ssl; ++ lib.optional (pythonOlder "3.7") idna-ssl;
meta = with lib; { meta = with lib; {
description = "Asynchronous HTTP Client/Server for Python and asyncio"; description = "Asynchronous HTTP Client/Server for Python and asyncio";
license = licenses.asl20; license = licenses.asl20;
homepage = https://github.com/KeepSafe/aiohttp/; homepage = https://github.com/aio-libs/aiohttp;
maintainers = with maintainers; [ dotlambda ]; maintainers = with maintainers; [ dotlambda ];
}; };
} }