python39Packages.coinmetrics-api-client: use optional-dependencies for test deps

This commit is contained in:
Fabian Affolter 2022-12-27 10:01:37 +01:00 committed by GitHub
parent 4294308657
commit 391de01d3c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,11 +1,23 @@
{ buildPythonPackage, fetchPypi, lib, orjson, pandas, poetry-core
, pytestCheckHook, pytest-mock, pythonOlder, python-dateutil, requests, typer
, websocket-client }:
{ 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 {
@ -13,19 +25,26 @@ buildPythonPackage rec {
hash = "sha256-2x8S9Jj/1bBnhXS/x0lQ8YUQkCvfpgGcDSQU2dGbAn0=";
};
nativeBuildInputs = [ poetry-core ];
nativeBuildInputs = [
poetry-core
];
propagatedBuildInputs = [
orjson python-dateutil requests typer websocket-client
orjson
python-dateutil
requests
typer
websocket-client
];
checkInputs = [
pandas
pytestCheckHook
pytest-mock
];
] ++ passthru.optional-dependencies.pandas;
pythonImportsCheck = [ "coinmetrics.api_client" ];
pythonImportsCheck = [
"coinmetrics.api_client"
];
passthru = {
optional-dependencies = {
@ -34,8 +53,8 @@ buildPythonPackage rec {
};
meta = with lib; {
description = "Coin Metrics API v4 client library";
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 ];
};