1{ lib 2, buildPythonPackage 3, fetchPypi 4, requests 5, google-auth 6, google-auth-oauthlib 7}: 8 9buildPythonPackage rec { 10 version = "4.0.1"; 11 pname = "gspread"; 12 13 src = fetchPypi { 14 inherit pname version; 15 sha256 = "236a0f24e3724b49bae4cbd5144ed036b0ae6feaf5828ad033eb2824bf05e5be"; 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}