{ lib , buildPythonPackage , fetchPypi , requests , google-auth , google-auth-oauthlib }: buildPythonPackage rec { version = "5.3.0"; pname = "gspread"; src = fetchPypi { inherit pname version; sha256 = "sha256-viIg4ZcjVw7ZjouOtqW24Er6DwjsHwi4niF8NUSIoEc="; }; propagatedBuildInputs = [ requests google-auth google-auth-oauthlib ]; meta = with lib; { description = "Google Spreadsheets client library"; homepage = "https://github.com/burnash/gspread"; license = licenses.mit; }; # No tests included doCheck = false; }