summary refs log tree commit diff
path: root/pkgs/development/python-modules/python-engineio
diff options
context:
space:
mode:
authorJonathan Ringer <jonringer117@gmail.com>2019-09-16 13:29:34 -0700
committerJonathan Ringer <jonringer117@gmail.com>2019-09-16 15:08:34 -0700
commit2d8a5baa9ca5feeccf4472995f22b8af62b533d0 (patch)
tree80508a0910a71a8bf98023a9d4f1c794bd7d5aad /pkgs/development/python-modules/python-engineio
parent80d1a3b37cdb621417f6be6783af48285d48b5d1 (diff)
downloadnixpkgs-2d8a5baa9ca5feeccf4472995f22b8af62b533d0.tar
nixpkgs-2d8a5baa9ca5feeccf4472995f22b8af62b533d0.tar.gz
nixpkgs-2d8a5baa9ca5feeccf4472995f22b8af62b533d0.tar.bz2
nixpkgs-2d8a5baa9ca5feeccf4472995f22b8af62b533d0.tar.lz
nixpkgs-2d8a5baa9ca5feeccf4472995f22b8af62b533d0.tar.xz
nixpkgs-2d8a5baa9ca5feeccf4472995f22b8af62b533d0.tar.zst
nixpkgs-2d8a5baa9ca5feeccf4472995f22b8af62b533d0.zip
python3Packages.python-engineio: 3.4.3 -> 3.9.3
Diffstat (limited to 'pkgs/development/python-modules/python-engineio')
-rw-r--r--pkgs/development/python-modules/python-engineio/default.nix26
1 files changed, 12 insertions, 14 deletions
diff --git a/pkgs/development/python-modules/python-engineio/default.nix b/pkgs/development/python-modules/python-engineio/default.nix
index 93dd9fb654f..bf6d4cd2381 100644
--- a/pkgs/development/python-modules/python-engineio/default.nix
+++ b/pkgs/development/python-modules/python-engineio/default.nix
@@ -1,27 +1,25 @@
-{ stdenv
-, buildPythonPackage
-, fetchFromGitHub
-, six
+{ stdenv, buildPythonPackage, fetchFromGitHub
+, aiohttp
 , eventlet
-, mock
 , iana-etc
 , libredirect
-, aiohttp
-, websockets
-, websocket_client
+, mock
 , requests
+, six
 , tornado
+, websocket_client
+, websockets
 }:
 
 buildPythonPackage rec {
   pname = "python-engineio";
-  version = "3.4.3";
+  version = "3.9.3";
 
   src = fetchFromGitHub {
     owner = "miguelgrinberg";
     repo = "python-engineio";
     rev = "v${version}";
-    sha256 = "0wk81rqigw47z087f5kc7b9iwqggypxc62q8q818qyzqwb93ysxf";
+    sha256 = "0rwlj12d37dpw6y3bdn6rxv68xnd9ykj4fr3ly0fa143xci35d9y";
   };
 
   propagatedBuildInputs = [
@@ -29,13 +27,13 @@ buildPythonPackage rec {
   ];
 
   checkInputs = [
+    aiohttp
     eventlet
     mock
-    aiohttp
-    websockets
-    websocket_client
-    tornado
     requests
+    tornado
+    websocket_client
+    websockets
   ];
 
   # make /etc/protocols accessible to fix socket.getprotobyname('tcp') in sandbox