summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/python-socketio
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2021-11-09 17:21:39 +0100
committerFabian Affolter <mail@fabian-affolter.ch>2021-11-09 17:21:39 +0100
commitf64750dca6b7dde9029677487b66f2c1249a8054 (patch)
tree63f77baff1342016246182b1c6a1c4aff0c61317 /pkgs/development/python-modules/python-socketio
parentbe520e2e01f74ffd50c54fd1585af9f9d6ae22a9 (diff)
python3Packages.python-socketio: 5.4.0 -> 5.4.1
Diffstat (limited to 'pkgs/development/python-modules/python-socketio')
-rw-r--r--pkgs/development/python-modules/python-socketio/default.nix18
1 files changed, 15 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/python-socketio/default.nix b/pkgs/development/python-modules/python-socketio/default.nix
index 5a672b2dec64..cd41899c5810 100644
--- a/pkgs/development/python-modules/python-socketio/default.nix
+++ b/pkgs/development/python-modules/python-socketio/default.nix
@@ -1,4 +1,5 @@
{ lib
+, aiohttp
, bidict
, buildPythonPackage
, fetchFromGitHub
@@ -6,22 +7,31 @@
, msgpack
, pytestCheckHook
, python-engineio
+, pythonOlder
+, requests
+, websocket-client
}:
buildPythonPackage rec {
pname = "python-socketio";
- version = "5.4.0";
+ version = "5.4.1";
+ format = "setuptools";
+
+ disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "miguelgrinberg";
repo = "python-socketio";
rev = "v${version}";
- sha256 = "sha256-0Q1R8XPciU5AEkj7Exlc906eyA5juYKzzA/Ygnzx7XU=";
+ sha256 = "sha256-qmC7AL2ZNB0D5p3c8ozacNMKc2COzYzPJfz6KXwWsd0=";
};
propagatedBuildInputs = [
+ aiohttp
bidict
python-engineio
+ requests
+ websocket-client
];
checkInputs = [
@@ -30,7 +40,9 @@ buildPythonPackage rec {
pytestCheckHook
];
- pythonImportsCheck = [ "socketio" ];
+ pythonImportsCheck = [
+ "socketio"
+ ];
meta = with lib; {
description = "Python Socket.IO server and client";