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