depot/third_party/nixpkgs/pkgs/development/python-modules/python-engineio/default.nix
Default email c7cb07f092 Project import generated by Copybara.
GitOrigin-RevId: 1536926ef5621b09bba54035ae2bb6d806d72ac8
2024-02-29 21:09:43 +01:00

93 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.0";
pyproject = true;
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "miguelgrinberg";
repo = "python-engineio";
rev = "refs/tags/v${version}";
hash = "sha256-FpPGIK5HVtTzDOpORo+WPhS1860P3dm1nJkvakpzsjE=";
};
nativeBuildInputs = [
setuptools
];
propagatedBuildInputs = [
simple-websocket
];
passthru.optional-dependencies = {
client = [
requests
websocket-client
];
asyncio_client = [
aiohttp
];
};
nativeCheckInputs = [
aiohttp
eventlet
mock
requests
tornado
websocket-client
pytestCheckHook
];
doCheck = !stdenv.isDarwin;
preCheck = lib.optionalString stdenv.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 ];
};
}