aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/development/python-modules/google_cloud_secret_manager/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'infra/libkookie/nixpkgs/pkgs/development/python-modules/google_cloud_secret_manager/default.nix')
-rw-r--r--infra/libkookie/nixpkgs/pkgs/development/python-modules/google_cloud_secret_manager/default.nix8
1 files changed, 5 insertions, 3 deletions
diff --git a/infra/libkookie/nixpkgs/pkgs/development/python-modules/google_cloud_secret_manager/default.nix b/infra/libkookie/nixpkgs/pkgs/development/python-modules/google_cloud_secret_manager/default.nix
index 513b76bafa4a..df3ec14c4dce 100644
--- a/infra/libkookie/nixpkgs/pkgs/development/python-modules/google_cloud_secret_manager/default.nix
+++ b/infra/libkookie/nixpkgs/pkgs/development/python-modules/google_cloud_secret_manager/default.nix
@@ -1,20 +1,22 @@
{ lib, buildPythonPackage, fetchPypi
-, grpc_google_iam_v1, google_api_core
+, grpc_google_iam_v1, google_api_core, libcst, proto-plus
, pytest, mock
}:
buildPythonPackage rec {
pname = "google-cloud-secret-manager";
- version = "1.0.0";
+ version = "2.0.0";
src = fetchPypi {
inherit pname version;
- sha256 = "1cm3xqacxnbpv2706bd2jl86mvcsphpjlvhzngz2k2p48a0jjx8r";
+ sha256 = "c2b0c93b559c3b6eb2dc75f7ab33d49fad8fe954f6094ac2b14323ce053058f0";
};
propagatedBuildInputs = [
google_api_core
grpc_google_iam_v1
+ libcst
+ proto-plus
];
checkInputs = [