f34ce41345
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
68 lines
1.2 KiB
Nix
68 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
orjson,
|
|
pandas,
|
|
poetry-core,
|
|
pytest-mock,
|
|
pytestCheckHook,
|
|
python-dateutil,
|
|
pythonOlder,
|
|
requests,
|
|
tqdm,
|
|
typer,
|
|
websocket-client,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "coinmetrics-api-client";
|
|
version = "2024.7.11.18";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.9";
|
|
|
|
__darwinAllowLocalNetworking = true;
|
|
|
|
src = fetchPypi {
|
|
inherit version;
|
|
pname = "coinmetrics_api_client";
|
|
hash = "sha256-o8SVup50hD2BzQQ3Z5wANHWEhZDOl0FH7iTmYTJnkYw=";
|
|
};
|
|
|
|
pythonRelaxDeps = [ "typer" ];
|
|
|
|
nativeBuildInputs = [
|
|
poetry-core
|
|
];
|
|
|
|
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 ];
|
|
};
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Coin Metrics API v4 client library";
|
|
mainProgram = "coinmetrics";
|
|
homepage = "https://coinmetrics.github.io/api-client-python/site/index.html";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ centromere ];
|
|
};
|
|
}
|