1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-06-22 17:31:04 +03:00
nixpkgs/pkgs/development/python-modules/gspread/default.nix

30 lines
562 B
Nix
Raw Normal View History

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