nixpkgs/pkgs/development/python-modules/python-socketio/default.nix

66 lines
1.3 KiB
Nix

{ lib
, aiohttp
, bidict
, buildPythonPackage
, fetchFromGitHub
, mock
, msgpack
, pytestCheckHook
, python-engineio
, pythonOlder
, requests
, websocket-client
}:
buildPythonPackage rec {
pname = "python-socketio";
version = "5.8.0";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "miguelgrinberg";
repo = "python-socketio";
rev = "v${version}";
hash = "sha256-3Do3Ql48cmhvrFe14ZYvWH0xi3T8hJ2LP0FyyWin580=";
};
propagatedBuildInputs = [
bidict
python-engineio
];
passthru.optional-dependencies = {
client = [
requests
websocket-client
];
asyncio_client = [
aiohttp
];
};
nativeCheckInputs = [
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/";
changelog = "https://github.com/miguelgrinberg/python-socketio/blob/v${version}/CHANGES.md";
license = with licenses; [ mit ];
maintainers = with maintainers; [ mic92 ];
};
}