summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules
diff options
context:
space:
mode:
authorgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2022-08-02 12:02:19 +0000
committerGitHub <noreply@github.com>2022-08-02 12:02:19 +0000
commitcf771dfd7a14ea202ba25d139fcf9fb412bea0fb (patch)
tree0f5f8716308b975c94e2571f1a4172ed727c8981 /pkgs/development/python-modules
parentba7495e55277802e6e946bb7c9e7241b3ed425da (diff)
parent1093a01c99ac111d0fb9d9d40a7d73fc21caacda (diff)
Merge staging-next into staging
Diffstat (limited to 'pkgs/development/python-modules')
-rw-r--r--pkgs/development/python-modules/maestral/default.nix2
-rw-r--r--pkgs/development/python-modules/openai/default.nix10
-rw-r--r--pkgs/development/python-modules/xml2rfc/default.nix4
3 files changed, 11 insertions, 5 deletions
diff --git a/pkgs/development/python-modules/maestral/default.nix b/pkgs/development/python-modules/maestral/default.nix
index 48b11544fc99..aeae43aeee4d 100644
--- a/pkgs/development/python-modules/maestral/default.nix
+++ b/pkgs/development/python-modules/maestral/default.nix
@@ -90,7 +90,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Open-source Dropbox client for macOS and Linux";
license = licenses.mit;
- maintainers = with maintainers; [ peterhoeg ];
+ maintainers = with maintainers; [ peterhoeg sfrijters ];
platforms = platforms.unix;
homepage = "https://maestral.app";
};
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
];
diff --git a/pkgs/development/python-modules/xml2rfc/default.nix b/pkgs/development/python-modules/xml2rfc/default.nix
index 0612c98c8e7e..61e6d877eb6a 100644
--- a/pkgs/development/python-modules/xml2rfc/default.nix
+++ b/pkgs/development/python-modules/xml2rfc/default.nix
@@ -26,7 +26,7 @@
buildPythonPackage rec {
pname = "xml2rfc";
- version = "3.13.0";
+ version = "3.13.1";
disabled = pythonOlder "3.6";
@@ -34,7 +34,7 @@ buildPythonPackage rec {
owner = "ietf-tools";
repo = "xml2rfc";
rev = "refs/tags/v${version}";
- sha256 = "sha256-z+OVlqIuLP6D5qvS4VxJFjjLiYKH7pDKqYCrvv9FHJ4=";
+ sha256 = "sha256-DRHhcMPLBr1SM6e3BCB8gfvadd8CeMIOsPT+uzcET+4=";
};
postPatch = ''