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

+13 -5
+13 -5
pkgs/development/python-modules/coinmetrics-api-client/default.nix
··· 5 5 , orjson 6 6 , pandas 7 7 , poetry-core 8 + , pytest-mock 8 9 , pytestCheckHook 9 - , pytest-mock 10 + , python-dateutil 10 11 , pythonOlder 11 - , python-dateutil 12 + , pythonRelaxDepsHook 12 13 , requests 13 14 , typer 14 15 , websocket-client ··· 16 17 17 18 buildPythonPackage rec { 18 19 pname = "coinmetrics-api-client"; 19 - version = "2023.5.26.17"; 20 + version = "2023.6.8.20"; 20 21 format = "pyproject"; 21 22 22 23 disabled = pythonOlder "3.9"; ··· 26 27 src = fetchPypi { 27 28 inherit version; 28 29 pname = "coinmetrics_api_client"; 29 - hash = "sha256-GCHXraeH6WWTlCnw9B1Xwtb6jwcxcvW1siy2T/8x14Q="; 30 + hash = "sha256-Koll0pod0vSW/F3veGTn8JYOMQI61REUW6Eh+TDJKNI="; 30 31 }; 31 32 33 + pythonRelaxDeps = [ 34 + "typer" 35 + ]; 36 + 32 37 nativeBuildInputs = [ 33 38 poetry-core 39 + pythonRelaxDepsHook 34 40 ]; 35 41 36 42 propagatedBuildInputs = [ ··· 52 58 53 59 passthru = { 54 60 optional-dependencies = { 55 - pandas = [ pandas ]; 61 + pandas = [ 62 + pandas 63 + ]; 56 64 }; 57 65 updateScript = nix-update-script { }; 58 66 };