mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-20 19:16:11 +00:00
pythonPackages.gspread: fix build
This commit is contained in:
parent
b4aa130977
commit
dc20c58d90
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user