depot/third_party/nixpkgs/pkgs/development/python-modules/python-socketio/default.nix
Default email ca5ab3a501 Project import generated by Copybara.
GitOrigin-RevId: 4a01ca36d6bfc133bc617e661916a81327c9bbc8
2022-07-14 08:49:19 -04:00

57 lines
1.1 KiB
Nix

{ lib
, aiohttp
, bidict
, buildPythonPackage
, fetchFromGitHub
, mock
, msgpack
, pytestCheckHook
, python-engineio
, pythonOlder
, requests
, websocket-client
}:
buildPythonPackage rec {
pname = "python-socketio";
version = "5.7.0";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "miguelgrinberg";
repo = "python-socketio";
rev = "v${version}";
sha256 = "sha256-POYD4w0iBAdaN2L4cpLJz1aCE9J0Iob//VN94/5lJLw=";
};
propagatedBuildInputs = [
aiohttp
bidict
python-engineio
requests
websocket-client
];
checkInputs = [
mock
msgpack
pytestCheckHook
];
pythonImportsCheck = [
"socketio"
];
meta = with lib; {
description = "Python Socket.IO server and client";
longDescription = ''
Socket.IO is a lightweight transport protocol that enables real-time
bidirectional event-based communication between clients and a server.
'';
homepage = "https://github.com/miguelgrinberg/python-socketio/";
license = with licenses; [ mit ];
maintainers = with maintainers; [ mic92 ];
};
}