diff options
| author | Fabian Affolter <mail@fabian-affolter.ch> | 2022-12-19 10:13:32 +0100 |
|---|---|---|
| committer | Fabian Affolter <mail@fabian-affolter.ch> | 2022-12-19 10:13:32 +0100 |
| commit | fba6c4a986e73eedcfc247bc4fdc1ff9ee5e5999 (patch) | |
| tree | a8d7fba763f7f28251244376a7a70e155fb99596 /pkgs/development/python-modules/python-socketio | |
| parent | 24c01b4df59ae6d557911138bd63d82b97a64fe0 (diff) | |
python310Packages.python-socketio: 5.7.1 -> 5.7.2
Diff: https://github.com/miguelgrinberg/python-socketio/compare/v5.7.1...v5.7.2
Changelog: https://github.com/miguelgrinberg/python-socketio/blob/v5.7.2/CHANGES.md
Diffstat (limited to 'pkgs/development/python-modules/python-socketio')
| -rw-r--r-- | pkgs/development/python-modules/python-socketio/default.nix | 17 |
1 files changed, 12 insertions, 5 deletions
diff --git a/pkgs/development/python-modules/python-socketio/default.nix b/pkgs/development/python-modules/python-socketio/default.nix index 980e62428aff..99cbce9ae1c3 100644 --- a/pkgs/development/python-modules/python-socketio/default.nix +++ b/pkgs/development/python-modules/python-socketio/default.nix @@ -14,7 +14,7 @@ buildPythonPackage rec { pname = "python-socketio"; - version = "5.7.1"; + version = "5.7.2"; format = "setuptools"; disabled = pythonOlder "3.6"; @@ -23,17 +23,24 @@ buildPythonPackage rec { owner = "miguelgrinberg"; repo = "python-socketio"; rev = "v${version}"; - hash = "sha256-KVaBSBWLeFJYiNJYTwoExExUmUaeNJ40c/WTgTc2Y/w="; + hash = "sha256-mSFs/k+3Lp5w4WdOLKj65kOA5b+Nc1uuksVmeeqV58E="; }; propagatedBuildInputs = [ - aiohttp bidict python-engineio - requests - websocket-client ]; + passthru.optional-dependencies = { + client = [ + requests + websocket-client + ]; + asyncio_client = [ + aiohttp + ]; + }; + checkInputs = [ mock msgpack |
