28 lines
503 B
Nix
Raw Normal View History

{ stdenv
, buildPythonPackage
, fetchPypi
2019-08-17 17:56:33 +02:00
, requests
}:
buildPythonPackage rec {
version = "3.3.0";
pname = "gspread";
src = fetchPypi {
inherit pname version;
sha256 = "1nlmg7lnj162nql1acw9z7n1043sk49j11arlfn766i9ykvq6hng";
};
2019-08-17 17:56:33 +02:00
propagatedBuildInputs = [ requests ];
meta = with stdenv.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;
}