1{ stdenv
2, buildPythonPackage
3, fetchPypi
4, requests
5, google_auth
6, google-auth-oauthlib
7}:
8
9buildPythonPackage rec {
10 version = "3.6.0";
11 pname = "gspread";
12
13 src = fetchPypi {
14 inherit pname version;
15 sha256 = "e04f1a6267b3929fc1600424c5ec83906d439672cafdd61a9d5b916a139f841c";
16 };
17
18 propagatedBuildInputs = [ requests google_auth google-auth-oauthlib ];
19
20 meta = with stdenv.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}