diff options
| author | Fabian Affolter <mail@fabian-affolter.ch> | 2021-09-29 12:42:31 +0200 |
|---|---|---|
| committer | Fabian Affolter <mail@fabian-affolter.ch> | 2021-09-29 12:42:31 +0200 |
| commit | 1515a90611465a6774ea42d59e7315e8adb16f1e (patch) | |
| tree | 5fd67564aaaacc58feef710ea580fe9bd20be609 /pkgs/development/python-modules/python-socketio | |
| parent | e894641cfe6a91d8167e74e7c73ebc76e57e3f57 (diff) | |
python3Packages.python-socketio: 5.3.0 -> 5.4.0
Diffstat (limited to 'pkgs/development/python-modules/python-socketio')
| -rw-r--r-- | pkgs/development/python-modules/python-socketio/default.nix | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/python-socketio/default.nix b/pkgs/development/python-modules/python-socketio/default.nix index 2b5c9c84a849..5a672b2dec64 100644 --- a/pkgs/development/python-modules/python-socketio/default.nix +++ b/pkgs/development/python-modules/python-socketio/default.nix @@ -3,19 +3,20 @@ , buildPythonPackage , fetchFromGitHub , mock +, msgpack , pytestCheckHook , python-engineio }: buildPythonPackage rec { pname = "python-socketio"; - version = "5.3.0"; + version = "5.4.0"; src = fetchFromGitHub { owner = "miguelgrinberg"; repo = "python-socketio"; rev = "v${version}"; - sha256 = "sha256-jyTTWxShLDDnbT+MYIJIjwpn3xfIB04je78doIOG+FQ="; + sha256 = "sha256-0Q1R8XPciU5AEkj7Exlc906eyA5juYKzzA/Ygnzx7XU="; }; propagatedBuildInputs = [ @@ -25,6 +26,7 @@ buildPythonPackage rec { checkInputs = [ mock + msgpack pytestCheckHook ]; |
