nixpkgs/pkgs/development/python-modules/gspread/default.nix
2020-03-19 22:02:08 +00:00

28 lines
503 B
Nix

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