5e7c2d6cef
GitOrigin-RevId: f99e5f03cc0aa231ab5950a15ed02afec45ed51a
76 lines
1.3 KiB
Nix
76 lines
1.3 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, nix-update-script
|
|
, orjson
|
|
, pandas
|
|
, poetry-core
|
|
, pytest-mock
|
|
, pytestCheckHook
|
|
, python-dateutil
|
|
, pythonOlder
|
|
, pythonRelaxDepsHook
|
|
, requests
|
|
, tqdm
|
|
, typer
|
|
, websocket-client
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "coinmetrics-api-client";
|
|
version = "2023.9.29.14";
|
|
format = "pyproject";
|
|
|
|
disabled = pythonOlder "3.9";
|
|
|
|
__darwinAllowLocalNetworking = true;
|
|
|
|
src = fetchPypi {
|
|
inherit version;
|
|
pname = "coinmetrics_api_client";
|
|
hash = "sha256-88tNPg/0U5ZC2OvH8Bh9EzKzRFF2YClS2tyrswBaUZw=";
|
|
};
|
|
|
|
pythonRelaxDeps = [
|
|
"typer"
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
poetry-core
|
|
pythonRelaxDepsHook
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
orjson
|
|
python-dateutil
|
|
requests
|
|
typer
|
|
tqdm
|
|
websocket-client
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
pytest-mock
|
|
] ++ passthru.optional-dependencies.pandas;
|
|
|
|
pythonImportsCheck = [
|
|
"coinmetrics.api_client"
|
|
];
|
|
|
|
passthru = {
|
|
optional-dependencies = {
|
|
pandas = [
|
|
pandas
|
|
];
|
|
};
|
|
updateScript = nix-update-script { };
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|