893b09d324
GitOrigin-RevId: eac07edbd20ed4908b98790ba299250b5527ecdf
29 lines
575 B
Nix
29 lines
575 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, requests
|
|
, google-auth
|
|
, google-auth-oauthlib
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
version = "5.1.1";
|
|
pname = "gspread";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "d9db8c43d552f541ea072d4727d1e955bc2368b095dd86c5429a845c9d8aed8f";
|
|
};
|
|
|
|
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;
|
|
|
|
}
|