2018-10-16 21:46:14 +01:00
|
|
|
{ stdenv
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
2019-08-17 16:56:33 +01:00
|
|
|
, requests
|
2018-10-16 21:46:14 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2020-04-13 13:34:45 +01:00
|
|
|
version = "3.3.1";
|
2018-10-16 21:46:14 +01:00
|
|
|
pname = "gspread";
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-04-13 13:34:45 +01:00
|
|
|
sha256 = "0mpvhndr38hb5x95xk2mqqasvcy6pa7ck8801bvpg5y3lwn5nka0";
|
2018-10-16 21:46:14 +01:00
|
|
|
};
|
|
|
|
|
2019-08-17 16:56:33 +01:00
|
|
|
propagatedBuildInputs = [ requests ];
|
|
|
|
|
2018-10-16 21:46:14 +01:00
|
|
|
meta = with stdenv.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;
|
|
|
|
|
2018-10-16 21:46:14 +01:00
|
|
|
}
|