7e47f3658e
GitOrigin-RevId: 1925c603f17fc89f4c8f6bf6f631a802ad85d784
84 lines
1.9 KiB
Nix
84 lines
1.9 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
aiohttp,
|
|
buildPythonPackage,
|
|
setuptools,
|
|
eventlet,
|
|
fetchFromGitHub,
|
|
iana-etc,
|
|
libredirect,
|
|
mock,
|
|
pytestCheckHook,
|
|
pythonOlder,
|
|
requests,
|
|
simple-websocket,
|
|
tornado,
|
|
websocket-client,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "python-engineio";
|
|
version = "4.9.1";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "miguelgrinberg";
|
|
repo = "python-engineio";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-wn2qiVkL05GTopGJeghHe9i+wyOQZbEeYDmEIIbXDS0=";
|
|
};
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
dependencies = [ simple-websocket ];
|
|
|
|
passthru.optional-dependencies = {
|
|
client = [
|
|
requests
|
|
websocket-client
|
|
];
|
|
asyncio_client = [ aiohttp ];
|
|
};
|
|
|
|
nativeCheckInputs = [
|
|
aiohttp
|
|
eventlet
|
|
mock
|
|
requests
|
|
tornado
|
|
websocket-client
|
|
pytestCheckHook
|
|
];
|
|
|
|
doCheck = !stdenv.hostPlatform.isDarwin;
|
|
|
|
preCheck = lib.optionalString stdenv.hostPlatform.isLinux ''
|
|
echo "nameserver 127.0.0.1" > resolv.conf
|
|
export NIX_REDIRECTS=/etc/protocols=${iana-etc}/etc/protocols:/etc/resolv.conf=$(realpath resolv.conf) \
|
|
LD_PRELOAD=${libredirect}/lib/libredirect.so
|
|
'';
|
|
|
|
postCheck = ''
|
|
unset NIX_REDIRECTS LD_PRELOAD
|
|
'';
|
|
|
|
# somehow effective log level does not change?
|
|
disabledTests = [ "test_logger" ];
|
|
|
|
pythonImportsCheck = [ "engineio" ];
|
|
|
|
meta = with lib; {
|
|
description = "Python based Engine.IO client and server";
|
|
longDescription = ''
|
|
Engine.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-engineio/";
|
|
changelog = "https://github.com/miguelgrinberg/python-engineio/blob/v${version}/CHANGES.md";
|
|
license = with licenses; [ mit ];
|
|
maintainers = with maintainers; [ mic92 ];
|
|
};
|
|
}
|