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

30 lines
575 B
Nix
Raw Normal View History

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