python-engineio: 3.13.0 -> 3.13.2 (fix build)
This commit is contained in:
parent
2bc02f2925
commit
12fc3e0718
@ -9,17 +9,18 @@
|
|||||||
, tornado
|
, tornado
|
||||||
, websocket_client
|
, websocket_client
|
||||||
, websockets
|
, websockets
|
||||||
|
, pytestCheckHook
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "python-engineio";
|
pname = "python-engineio";
|
||||||
version = "3.13.0";
|
version = "3.13.2";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "miguelgrinberg";
|
owner = "miguelgrinberg";
|
||||||
repo = "python-engineio";
|
repo = "python-engineio";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "1fgfrgcvjg3fyza5lhl1l9cfq073xrwwhh3xs178csrjz4s8s378";
|
sha256 = "1hn5nnxp7y2dpf52vrwdxza2sqmzj8admcnwgjkmcxk65s2dhvy1";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
@ -34,15 +35,19 @@ buildPythonPackage rec {
|
|||||||
tornado
|
tornado
|
||||||
websocket_client
|
websocket_client
|
||||||
websockets
|
websockets
|
||||||
|
pytestCheckHook
|
||||||
];
|
];
|
||||||
|
|
||||||
# make /etc/protocols accessible to fix socket.getprotobyname('tcp') in sandbox
|
|
||||||
preCheck = stdenv.lib.optionalString stdenv.isLinux ''
|
preCheck = stdenv.lib.optionalString stdenv.isLinux ''
|
||||||
export NIX_REDIRECTS=/etc/protocols=${iana-etc}/etc/protocols \
|
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
|
LD_PRELOAD=${libredirect}/lib/libredirect.so
|
||||||
'';
|
'';
|
||||||
postCheck = "unset NIX_REDIRECTS LD_PRELOAD";
|
postCheck = "unset NIX_REDIRECTS LD_PRELOAD";
|
||||||
|
|
||||||
|
# somehow effective log level does not change?
|
||||||
|
disabledTests = [ "test_logger" ];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "Engine.IO server";
|
description = "Engine.IO server";
|
||||||
homepage = "https://github.com/miguelgrinberg/python-engineio/";
|
homepage = "https://github.com/miguelgrinberg/python-engineio/";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user