Files
nixpkgs/pkgs/development/python-modules/coinmetrics-api-client/default.nix
T
Guillaume Girol 33afbf39f6 treewide: switch to nativeCheckInputs
checkInputs used to be added to nativeBuildInputs. Now we have
nativeCheckInputs to do that instead. Doing this treewide change allows
to keep hashes identical to before the introduction of
nativeCheckInputs.
2023-01-21 12:00:00 +00:00

62 lines
1.1 KiB
Nix

{ lib
, buildPythonPackage
, fetchPypi
, orjson
, pandas
, poetry-core
, pytestCheckHook
, pytest-mock
, pythonOlder
, python-dateutil
, requests
, typer
, websocket-client
}:
buildPythonPackage rec {
pname = "coinmetrics-api-client";
version = "2022.11.14.16";
format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-2x8S9Jj/1bBnhXS/x0lQ8YUQkCvfpgGcDSQU2dGbAn0=";
};
nativeBuildInputs = [
poetry-core
];
propagatedBuildInputs = [
orjson
python-dateutil
requests
typer
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";
homepage = "https://coinmetrics.github.io/api-client-python/site/index.html";
license = licenses.mit;
maintainers = with maintainers; [ centromere ];
};
}