python310Packages.coinmetrics-api-client: 2023.5.26.17 -> 2023.6.8.20

This commit is contained in:
Fabian Affolter 2023-06-11 00:04:39 +02:00
parent 2eb6d18556
commit 2c9c83b03e

View file

@ -5,10 +5,11 @@
, orjson
, pandas
, poetry-core
, pytestCheckHook
, pytest-mock
, pythonOlder
, pytestCheckHook
, python-dateutil
, pythonOlder
, pythonRelaxDepsHook
, requests
, typer
, websocket-client
@ -16,7 +17,7 @@
buildPythonPackage rec {
pname = "coinmetrics-api-client";
version = "2023.5.26.17";
version = "2023.6.8.20";
format = "pyproject";
disabled = pythonOlder "3.9";
@ -26,11 +27,16 @@ buildPythonPackage rec {
src = fetchPypi {
inherit version;
pname = "coinmetrics_api_client";
hash = "sha256-GCHXraeH6WWTlCnw9B1Xwtb6jwcxcvW1siy2T/8x14Q=";
hash = "sha256-Koll0pod0vSW/F3veGTn8JYOMQI61REUW6Eh+TDJKNI=";
};
pythonRelaxDeps = [
"typer"
];
nativeBuildInputs = [
poetry-core
pythonRelaxDepsHook
];
propagatedBuildInputs = [
@ -52,7 +58,9 @@ buildPythonPackage rec {
passthru = {
optional-dependencies = {
pandas = [ pandas ];
pandas = [
pandas
];
};
updateScript = nix-update-script { };
};