Merge pull request #34891 from dotlambda/aiohttp

python3Packages.aiohttp: 2.3.10 -> 3.0.1

authored by Michael Weiss and committed by GitHub b2f39f97 76723a26

+5 -4
+5 -4
pkgs/development/python-modules/aiohttp/default.nix
··· 2 2 , buildPythonPackage 3 3 , fetchPypi 4 4 , pythonOlder 5 + , attrs 5 6 , chardet 6 7 , multidict 7 8 , async-timeout ··· 14 15 15 16 buildPythonPackage rec { 16 17 pname = "aiohttp"; 17 - version = "2.3.10"; 18 + version = "3.0.1"; 18 19 19 20 src = fetchPypi { 20 21 inherit pname version; 21 - sha256 = "8adda6583ba438a4c70693374e10b60168663ffa6564c5c75d3c7a9055290964"; 22 + sha256 = "7aee5c0750584946fde40da70f0b28fe769f85182f1171acef18a35fd8ecd221"; 22 23 }; 23 24 24 25 disabled = pythonOlder "3.4"; 25 26 26 27 checkInputs = [ pytest gunicorn pytest-mock ]; 27 28 28 - propagatedBuildInputs = [ async-timeout chardet multidict yarl ] 29 + propagatedBuildInputs = [ attrs chardet multidict async-timeout yarl ] 29 30 ++ lib.optional (pythonOlder "3.7") idna-ssl; 30 31 31 32 meta = with lib; { 32 33 description = "Asynchronous HTTP Client/Server for Python and asyncio"; 33 34 license = licenses.asl20; 34 - homepage = https://github.com/KeepSafe/aiohttp/; 35 + homepage = https://github.com/aio-libs/aiohttp; 35 36 maintainers = with maintainers; [ dotlambda ]; 36 37 }; 37 38 }