python3Packages.python-socketio: 5.4.0 -> 5.4.1

main
Fabian Affolter 3 years ago
parent be520e2e01
commit f64750dca6
  1. 18
      pkgs/development/python-modules/python-socketio/default.nix

@ -1,4 +1,5 @@
{ lib { lib
, aiohttp
, bidict , bidict
, buildPythonPackage , buildPythonPackage
, fetchFromGitHub , fetchFromGitHub
@ -6,22 +7,31 @@
, msgpack , msgpack
, pytestCheckHook , pytestCheckHook
, python-engineio , python-engineio
, pythonOlder
, requests
, websocket-client
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "python-socketio"; pname = "python-socketio";
version = "5.4.0"; version = "5.4.1";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "miguelgrinberg"; owner = "miguelgrinberg";
repo = "python-socketio"; repo = "python-socketio";
rev = "v${version}"; rev = "v${version}";
sha256 = "sha256-0Q1R8XPciU5AEkj7Exlc906eyA5juYKzzA/Ygnzx7XU="; sha256 = "sha256-qmC7AL2ZNB0D5p3c8ozacNMKc2COzYzPJfz6KXwWsd0=";
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [
aiohttp
bidict bidict
python-engineio python-engineio
requests
websocket-client
]; ];
checkInputs = [ checkInputs = [
@ -30,7 +40,9 @@ buildPythonPackage rec {
pytestCheckHook pytestCheckHook
]; ];
pythonImportsCheck = [ "socketio" ]; pythonImportsCheck = [
"socketio"
];
meta = with lib; { meta = with lib; {
description = "Python Socket.IO server and client"; description = "Python Socket.IO server and client";

Loading…
Cancel
Save