summary refs log tree commit diff
diff options
context:
space:
mode:
authorAlex Rice <alexrice999@hotmail.co.uk>2020-08-23 22:08:22 +0100
committerJon <jonringer@users.noreply.github.com>2020-08-23 16:21:50 -0700
commitdc20c58d90f24c0a92c649f0cf023a38b3853022 (patch)
treeb666cef3b5b0e531aabc65c94b8d6a408e4d6ddf
parentb4aa1309779e9b54a3283b914605c251c3c68cb7 (diff)
downloadnixpkgs-dc20c58d90f24c0a92c649f0cf023a38b3853022.tar
nixpkgs-dc20c58d90f24c0a92c649f0cf023a38b3853022.tar.gz
nixpkgs-dc20c58d90f24c0a92c649f0cf023a38b3853022.tar.bz2
nixpkgs-dc20c58d90f24c0a92c649f0cf023a38b3853022.tar.lz
nixpkgs-dc20c58d90f24c0a92c649f0cf023a38b3853022.tar.xz
nixpkgs-dc20c58d90f24c0a92c649f0cf023a38b3853022.tar.zst
nixpkgs-dc20c58d90f24c0a92c649f0cf023a38b3853022.zip
pythonPackages.gspread: fix build
-rw-r--r--pkgs/development/python-modules/gspread/default.nix5
1 files changed, 2 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/gspread/default.nix b/pkgs/development/python-modules/gspread/default.nix
index 5c9c644abd3..5fd73541dd4 100644
--- a/pkgs/development/python-modules/gspread/default.nix
+++ b/pkgs/development/python-modules/gspread/default.nix
@@ -3,6 +3,7 @@
 , fetchPypi
 , requests
 , google_auth
+, google-auth-oauthlib
 }:
 
 buildPythonPackage rec {
@@ -14,14 +15,12 @@ buildPythonPackage rec {
     sha256 = "e04f1a6267b3929fc1600424c5ec83906d439672cafdd61a9d5b916a139f841c";
   };
 
-  propagatedBuildInputs = [ requests ];
+  propagatedBuildInputs = [ requests google_auth google-auth-oauthlib ];
 
   meta = with stdenv.lib; {
     description = "Google Spreadsheets client library";
     homepage = "https://github.com/burnash/gspread";
     license = licenses.mit;
-    # missing multiple google libraries
-    broken = true; # 2020-08-15
   };
 
   # No tests included