blob: 39a66f4ba87ba06145b09911bd895ad0d5669fdb (
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
58
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
pycryptodome,
requests,
setuptools,
websocket-client,
# dependencies for tests
pytest-cov-stub,
sure,
responses,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "binance-connector";
version = "3.12.0";
pyproject = true;
src = fetchFromGitHub {
owner = "binance";
repo = "${pname}-python";
tag = "v${version}";
hash = "sha256-8O73+fli0HNbvGBcyg79ZGOTQvL0TF5SCfogI6btlrA=";
};
build-system = [ setuptools ];
dependencies = [
requests
pycryptodome
websocket-client
];
nativeCheckInputs = [
pytest-cov-stub
sure
responses
pytestCheckHook
];
# pytestCheckHook attempts to run examples directory, which requires
# network access
disabledTestPaths = [ "examples/" ];
pythonImportsCheck = [
"binance.spot"
"binance.websocket"
];
meta = {
description = "Simple connector to Binance Public API";
homepage = "https://github.com/binance/binance-connector-python";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ trishtzy ];
};
}
|