1{ lib
2, buildPythonPackage
3, fetchPypi
4, requests
5, google-auth
6, google-auth-oauthlib
7}:
8
9buildPythonPackage rec {
10 version = "3.7.0";
11 pname = "gspread";
12
13 src = fetchPypi {
14 inherit pname version;
15 sha256 = "4bda4ab8c5edb9e41cf4ae40d4d5fb30447522b4e43608e05c01351ab1b96912";
16 };
17
18 propagatedBuildInputs = [ requests google-auth google-auth-oauthlib ];
19
20 meta = with lib; {
21 description = "Google Spreadsheets client library";
22 homepage = "https://github.com/burnash/gspread";
23 license = licenses.mit;
24 };
25
26 # No tests included
27 doCheck = false;
28
29}