depot/third_party/nixpkgs/pkgs/development/python-modules/gspread/default.nix
Default email 58f8944c92 Project import generated by Copybara.
GitOrigin-RevId: 5aba0fe9766a7201a336249fd6cb76e0d7ba2faf
2020-09-24 23:45:31 -05:00

29 lines
585 B
Nix

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