about summary refs log tree commit diff
path: root/pkgs/development/python-modules/python-engineio
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2021-01-06 08:44:33 +0100
committerFabian Affolter <mail@fabian-affolter.ch>2021-01-06 08:44:33 +0100
commita050391994b914fb08037404f6045cefe457e948 (patch)
tree3a6d031d6bbdd3deac5b1df367ac58445d34f03e /pkgs/development/python-modules/python-engineio
parent5a18a52a577bf4dcf8f7b4f77e0bd9c46b4338da (diff)
python3Packages.python-engineio: 3.13.2 -> 4.0.0
Diffstat (limited to 'pkgs/development/python-modules/python-engineio')
-rw-r--r--pkgs/development/python-modules/python-engineio/default.nix12
1 files changed, 5 insertions, 7 deletions
diff --git a/pkgs/development/python-modules/python-engineio/default.nix b/pkgs/development/python-modules/python-engineio/default.nix
index a74ee0455f2f1..ed998999276db 100644
--- a/pkgs/development/python-modules/python-engineio/default.nix
+++ b/pkgs/development/python-modules/python-engineio/default.nix
@@ -1,4 +1,6 @@
-{ stdenv, buildPythonPackage, fetchFromGitHub
+{ stdenv
+, buildPythonPackage
+, fetchFromGitHub
 , aiohttp
 , eventlet
 , iana-etc
@@ -14,19 +16,15 @@
 
 buildPythonPackage rec {
   pname = "python-engineio";
-  version = "3.13.2";
+  version = "4.0.0";
 
   src = fetchFromGitHub {
     owner = "miguelgrinberg";
     repo = "python-engineio";
     rev = "v${version}";
-    sha256 = "1hn5nnxp7y2dpf52vrwdxza2sqmzj8admcnwgjkmcxk65s2dhvy1";
+    sha256 = "00x9pmmnl1yd59wd96ivkiqh4n5nphl8cwk43hf4nqr0icgsyhar";
   };
 
-  propagatedBuildInputs = [
-    six
-  ];
-
   checkInputs = [
     aiohttp
     eventlet