summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorRobert Schütz <robert.schuetz@stud.uni-heidelberg.de>2018-02-12 12:05:12 +0100
committerRobert Schütz <robert.schuetz@stud.uni-heidelberg.de>2018-02-16 14:20:24 +0100
commitb431193ad15ae0e82eb216c82dd35015900e37e7 (patch)
tree49cc3267ea4da4eb684b061003ca108333dca9b6 /pkgs
parent76723a26f9e975676d98137981a3079426a0c75a (diff)
downloadnixlib-b431193ad15ae0e82eb216c82dd35015900e37e7.tar
nixlib-b431193ad15ae0e82eb216c82dd35015900e37e7.tar.gz
nixlib-b431193ad15ae0e82eb216c82dd35015900e37e7.tar.bz2
nixlib-b431193ad15ae0e82eb216c82dd35015900e37e7.tar.lz
nixlib-b431193ad15ae0e82eb216c82dd35015900e37e7.tar.xz
nixlib-b431193ad15ae0e82eb216c82dd35015900e37e7.tar.zst
nixlib-b431193ad15ae0e82eb216c82dd35015900e37e7.zip
python3Packages.aiohttp: 2.3.10 -> 3.0.1
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/python-modules/aiohttp/default.nix9
1 files changed, 5 insertions, 4 deletions
diff --git a/pkgs/development/python-modules/aiohttp/default.nix b/pkgs/development/python-modules/aiohttp/default.nix
index f831679294a4..19ad64e7472e 100644
--- a/pkgs/development/python-modules/aiohttp/default.nix
+++ b/pkgs/development/python-modules/aiohttp/default.nix
@@ -2,6 +2,7 @@
 , buildPythonPackage
 , fetchPypi
 , pythonOlder
+, attrs
 , chardet
 , multidict
 , async-timeout
@@ -14,24 +15,24 @@
 
 buildPythonPackage rec {
   pname = "aiohttp";
-  version = "2.3.10";
+  version = "3.0.1";
 
   src = fetchPypi {
     inherit pname version;
-    sha256 = "8adda6583ba438a4c70693374e10b60168663ffa6564c5c75d3c7a9055290964";
+    sha256 = "7aee5c0750584946fde40da70f0b28fe769f85182f1171acef18a35fd8ecd221";
   };
 
   disabled = pythonOlder "3.4";
 
   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;
 
   meta = with lib; {
     description = "Asynchronous HTTP Client/Server for Python and asyncio";
     license = licenses.asl20;
-    homepage = https://github.com/KeepSafe/aiohttp/;
+    homepage = https://github.com/aio-libs/aiohttp;
     maintainers = with maintainers; [ dotlambda ];
   };
 }