Merge pull request #139877 from fabaff/bump-python-engineio

This commit is contained in:
Sandro 2021-09-29 15:31:21 +02:00 committed by GitHub
commit 47bc8a6fda
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 4 deletions

View File

@ -16,13 +16,13 @@
buildPythonPackage rec {
pname = "python-engineio";
version = "4.2.0";
version = "4.2.1";
src = fetchFromGitHub {
owner = "miguelgrinberg";
repo = "python-engineio";
rev = "v${version}";
sha256 = "sha256-QfX8Volz5nabGVhQLXfSD/QooxLsU6DvCq1WRkRZ6hU=";
sha256 = "sha256-aAoTeQZCtxddVBPwlyv2j4aACMO9p0vQ/ESkkv4E3VE=";
};
checkInputs = [

View File

@ -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
];