pythonPackages.aiohttp: 3.0.9 -> 3.1.1

This commit is contained in:
Robert Schütz 2018-04-04 19:31:03 +02:00 committed by Frederik Rietdijk
parent bd9b576de5
commit 861283c3b3

View File

@ -11,20 +11,21 @@
, pytest , pytest
, gunicorn , gunicorn
, pytest-mock , pytest-mock
, async_generator
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "aiohttp"; pname = "aiohttp";
version = "3.0.9"; version = "3.1.1";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "281a9fa56b5ce587a2147ec285d18a224942f7e020581afa6cc44d7caecf937b"; sha256 = "dc5cab081d4b334d0440b019edf24fe1cb138b8114e0e22d2b0661284bc1775f";
}; };
disabled = pythonOlder "3.5"; disabled = pythonOlder "3.5";
checkInputs = [ pytest gunicorn pytest-mock ]; checkInputs = [ pytest gunicorn pytest-mock async_generator ];
propagatedBuildInputs = [ attrs chardet multidict async-timeout yarl ] propagatedBuildInputs = [ attrs chardet multidict async-timeout yarl ]
++ lib.optional (pythonOlder "3.7") idna-ssl; ++ lib.optional (pythonOlder "3.7") idna-ssl;