mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-21 19:44:09 +00:00
pythonPackages.gspread: fix build
This commit is contained in:
parent
b4aa130977
commit
dc20c58d90
@ -3,6 +3,7 @@
|
|||||||
, fetchPypi
|
, fetchPypi
|
||||||
, requests
|
, requests
|
||||||
, google_auth
|
, google_auth
|
||||||
|
, google-auth-oauthlib
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
@ -14,14 +15,12 @@ buildPythonPackage rec {
|
|||||||
sha256 = "e04f1a6267b3929fc1600424c5ec83906d439672cafdd61a9d5b916a139f841c";
|
sha256 = "e04f1a6267b3929fc1600424c5ec83906d439672cafdd61a9d5b916a139f841c";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [ requests ];
|
propagatedBuildInputs = [ requests google_auth google-auth-oauthlib ];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "Google Spreadsheets client library";
|
description = "Google Spreadsheets client library";
|
||||||
homepage = "https://github.com/burnash/gspread";
|
homepage = "https://github.com/burnash/gspread";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
# missing multiple google libraries
|
|
||||||
broken = true; # 2020-08-15
|
|
||||||
};
|
};
|
||||||
|
|
||||||
# No tests included
|
# No tests included
|
||||||
|
Loading…
Reference in New Issue
Block a user