From 9f49d4c4fc5a43d88648855e8aace163ed01f535 Mon Sep 17 00:00:00 2001 From: Malo Bourgon Date: Mon, 1 Aug 2022 14:41:33 -0700 Subject: [PATCH] openai: 0.20.0 -> 0.22.0 --- pkgs/development/python-modules/openai/default.nix | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/openai/default.nix b/pkgs/development/python-modules/openai/default.nix index 87fb5301d7f7..40645c19373c 100644 --- a/pkgs/development/python-modules/openai/default.nix +++ b/pkgs/development/python-modules/openai/default.nix @@ -4,10 +4,13 @@ , pythonOlder # Python dependencies +, numpy , openpyxl , pandas , pandas-stubs , requests +, scikit-learn +, tenacity , tqdm , wandb @@ -18,7 +21,7 @@ buildPythonPackage rec { pname = "openai"; - version = "0.20.0"; + version = "0.22.0"; disabled = pythonOlder "3.7.1"; @@ -27,14 +30,17 @@ buildPythonPackage rec { owner = "openai"; repo = "openai-python"; rev = "v${version}"; - sha256 = "sha256-kG7gsLAOoBCt7pxViO1Zhil2FGHigPEMJfBjdIp2th8="; + sha256 = "sha256-4FKFcUiY17hEiOGFP1fPBtcvcM19hFrHXX3ZLxgdJHI="; }; propagatedBuildInputs = [ + numpy openpyxl pandas pandas-stubs requests + scikit-learn + tenacity tqdm wandb ];