ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
76 lines
1.3 KiB
Nix
76 lines
1.3 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, orjson
|
|
, pandas
|
|
, poetry-core
|
|
, pytest-mock
|
|
, pytestCheckHook
|
|
, python-dateutil
|
|
, pythonOlder
|
|
, pythonRelaxDepsHook
|
|
, requests
|
|
, tqdm
|
|
, typer
|
|
, websocket-client
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "coinmetrics-api-client";
|
|
version = "2024.2.6.16";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.9";
|
|
|
|
__darwinAllowLocalNetworking = true;
|
|
|
|
src = fetchPypi {
|
|
inherit version;
|
|
pname = "coinmetrics_api_client";
|
|
hash = "sha256-rCj8nG7iQFJKs3Mic2wRZKBqx9T0lCPH5Po8k0nLppg=";
|
|
};
|
|
|
|
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
|
|
];
|
|
};
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|