blob: 8047a7a7ebecfd4185dfebabb2effaebf6bbc0fc (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
{
lib,
aiohttp,
async-timeout,
buildPythonPackage,
fetchFromGitHub,
jsonrpc-base,
pytest-asyncio,
pytestCheckHook,
pythonOlder,
setuptools,
}:
buildPythonPackage rec {
pname = "jsonrpc-websocket";
version = "3.1.5";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "emlove";
repo = "jsonrpc-websocket";
tag = version;
hash = "sha256-CdYa4gcbG3EM1glxLU1hyqbNse87KJKjwSRQSFfDMM0=";
};
nativeBuildInputs = [ setuptools ];
propagatedBuildInputs = [
aiohttp
async-timeout
jsonrpc-base
];
nativeCheckInputs = [
pytest-asyncio
pytestCheckHook
];
pytestFlags = [
"--asyncio-mode=auto"
];
enabledTestPaths = [
"tests.py"
];
pythonImportsCheck = [ "jsonrpc_websocket" ];
meta = with lib; {
description = "JSON-RPC websocket client library for asyncio";
homepage = "https://github.com/emlove/jsonrpc-websocket";
license = licenses.bsd3;
maintainers = with maintainers; [ peterhoeg ];
};
}
|