nixpkgs/pkgs/development/python-modules/gspread/default.nix

30 lines
575 B
Nix
Raw Permalink Normal View History

{ lib
, buildPythonPackage
, fetchPypi
2019-08-17 15:56:33 +00:00
, requests
, google-auth
2020-08-23 21:08:22 +00:00
, google-auth-oauthlib
}:
buildPythonPackage rec {
version = "3.7.0";
pname = "gspread";
src = fetchPypi {
inherit pname version;
sha256 = "4bda4ab8c5edb9e41cf4ae40d4d5fb30447522b4e43608e05c01351ab1b96912";
};
propagatedBuildInputs = [ requests google-auth google-auth-oauthlib ];
2019-08-17 15:56:33 +00:00
meta = with lib; {
description = "Google Spreadsheets client library";
homepage = "https://github.com/burnash/gspread";
license = licenses.mit;
};
2019-08-17 15:56:33 +00:00
# No tests included
doCheck = false;
}