a7848c7476
GitOrigin-RevId: 34ad3ffe08adfca17fcb4e4a47bb5f3b113687be
54 lines
1.1 KiB
Nix
54 lines
1.1 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, ed25519
|
|
, fetchFromGitHub
|
|
, nats-server
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
, uvloop
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "asyncio-nats-client";
|
|
version = "0.11.4";
|
|
disabled = pythonOlder "3.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "nats-io";
|
|
repo = "nats.py";
|
|
rev = "v${version}";
|
|
sha256 = "1aj57xi2rj1xswq8air13xdsll1ybpi0nmz5f6jq01azm0zy9xyd";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
ed25519
|
|
];
|
|
|
|
checkInputs = [
|
|
nats-server
|
|
pytestCheckHook
|
|
uvloop
|
|
];
|
|
|
|
postPatch = ''
|
|
substituteInPlace setup.cfg \
|
|
--replace "--cov=nats --cov-report html" ""
|
|
'';
|
|
|
|
disabledTests = [
|
|
# RuntimeError: Event loop is closed
|
|
"test_subscribe_no_echo"
|
|
"test_reconnect_to_new_server_with_auth"
|
|
"test_drain_connection"
|
|
"test_discover_servers_on_first_connect"
|
|
];
|
|
|
|
pythonImportsCheck = [ "nats.aio" ];
|
|
|
|
meta = with lib; {
|
|
description = "Python client for NATS.io";
|
|
homepage = "https://github.com/nats-io/nats.py";
|
|
license = with licenses; [ asl20 ];
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|