-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathdefault.nix
78 lines (67 loc) · 1.22 KB
/
default.nix
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{ lib
, buildPythonPackage
, fetchPypi
, mypy
, orjson
, pandas
, poetry-core
, polars
, pythonOlder
, python-dateutil
, pytestCheckHook
, pytest-mock
, requests
, tqdm
, typer
, types-python-dateutil
, types-requests
, types-ujson
, websocket-client
}:
buildPythonPackage rec {
pname = "coinmetrics-api-client";
version = "2025.2.12.22";
format = "pyproject";
disabled = pythonOlder "3.9";
__darwinAllowLocalNetworking = true;
src = ./.;
nativeBuildInputs = [
poetry-core
];
propagatedBuildInputs = [
orjson
python-dateutil
requests
typer
websocket-client
tqdm
pandas
polars
];
nativeCheckInputs = [
mypy
pytestCheckHook
pytest-mock
types-python-dateutil
types-requests
types-ujson
];
pythonImportsCheck = [
"coinmetrics.api_client"
];
preCheck = ''
mypy -p coinmetrics -p test
'';
passthru = {
optional-dependencies = {
pandas = [ pandas ];
polars = [ polars ];
};
};
meta = with lib; {
description = "Coin Metrics API v4 client library";
homepage = "https://coinmetrics.github.io/api-client-python/site/index.html";
license = licenses.mit;
maintainers = with maintainers; [ centromere ];
};
}