summary refs log tree commit diff
path: root/pkgs/development/python-modules/aiohttp
diff options
context:
space:
mode:
authorRobert Schütz <robert.schuetz@stud.uni-heidelberg.de>2018-04-04 19:31:03 +0200
committerFrederik Rietdijk <fridh@fridh.nl>2018-04-04 19:48:00 +0200
commit861283c3b34569f329a808b1a18d513fcdcfac9e (patch)
tree0f84885cedfdffaa6b52d504af2ca2d6245bea18 /pkgs/development/python-modules/aiohttp
parentbd9b576de5ca46830f857b4f9f8a7495bee4b5a4 (diff)
downloadnixpkgs-861283c3b34569f329a808b1a18d513fcdcfac9e.tar
nixpkgs-861283c3b34569f329a808b1a18d513fcdcfac9e.tar.gz
nixpkgs-861283c3b34569f329a808b1a18d513fcdcfac9e.tar.bz2
nixpkgs-861283c3b34569f329a808b1a18d513fcdcfac9e.tar.lz
nixpkgs-861283c3b34569f329a808b1a18d513fcdcfac9e.tar.xz
nixpkgs-861283c3b34569f329a808b1a18d513fcdcfac9e.tar.zst
nixpkgs-861283c3b34569f329a808b1a18d513fcdcfac9e.zip
pythonPackages.aiohttp: 3.0.9 -> 3.1.1
Diffstat (limited to 'pkgs/development/python-modules/aiohttp')
-rw-r--r--pkgs/development/python-modules/aiohttp/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/aiohttp/default.nix b/pkgs/development/python-modules/aiohttp/default.nix
index 67bf5a11593..19c616b3cfa 100644
--- a/pkgs/development/python-modules/aiohttp/default.nix
+++ b/pkgs/development/python-modules/aiohttp/default.nix
@@ -11,20 +11,21 @@
 , pytest
 , gunicorn
 , pytest-mock
+, async_generator
 }:
 
 buildPythonPackage rec {
   pname = "aiohttp";
-  version = "3.0.9";
+  version = "3.1.1";
 
   src = fetchPypi {
     inherit pname version;
-    sha256 = "281a9fa56b5ce587a2147ec285d18a224942f7e020581afa6cc44d7caecf937b";
+    sha256 = "dc5cab081d4b334d0440b019edf24fe1cb138b8114e0e22d2b0661284bc1775f";
   };
 
   disabled = pythonOlder "3.5";
 
-  checkInputs = [ pytest gunicorn pytest-mock ];
+  checkInputs = [ pytest gunicorn pytest-mock async_generator ];
 
   propagatedBuildInputs = [ attrs chardet multidict async-timeout yarl ]
     ++ lib.optional (pythonOlder "3.7") idna-ssl;