Merge pull request #187521 from centromere/coinmetrics-api-client

This commit is contained in:
Sandro 2022-08-31 22:20:22 +02:00 committed by GitHub
commit ad464c35b5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 44 additions and 0 deletions

View file

@ -0,0 +1,42 @@
{ buildPythonPackage, fetchPypi, lib, orjson, pandas, poetry-core
, pytestCheckHook, pytest-mock, pythonOlder, python-dateutil, requests, typer
, websocket-client }:
buildPythonPackage rec {
pname = "coinmetrics-api-client";
version = "2022.8.29.6";
format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-EPPRKOdFbLLYw0K5C4nojR8GueekoFW7xIlwKeSV1EY=";
};
nativeBuildInputs = [ poetry-core ];
propagatedBuildInputs = [
orjson python-dateutil requests typer websocket-client
];
checkInputs = [
pandas
pytestCheckHook
pytest-mock
];
pythonImportsCheck = [ "coinmetrics.api_client" ];
passthru = {
optional-dependencies = {
pandas = [ pandas ];
};
};
meta = with lib; {
homepage = "https://coinmetrics.github.io/api-client-python/site/index.html";
description = "Coin Metrics API v4 client library (Python)";
license = licenses.mit;
maintainers = with maintainers; [ centromere ];
};
}

View file

@ -1947,6 +1947,8 @@ in {
cogapp = callPackage ../development/python-modules/cogapp { };
coinmetrics-api-client = callPackage ../development/python-modules/coinmetrics-api-client { };
ColanderAlchemy = callPackage ../development/python-modules/colanderalchemy { };
colander = callPackage ../development/python-modules/colander { };