nixpkgs/pkgs/development/python-modules/gspread/default.nix

22 lines
421 B
Nix
Raw Normal View History

{ stdenv
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
2018-11-04 10:35:01 +00:00
version = "3.0.1";
pname = "gspread";
src = fetchPypi {
inherit pname version;
2018-11-04 10:35:01 +00:00
sha256 = "1cc06b22c6a1b6726925defcd41c19ce6cd5ab939252e72759bdf0353e36f552";
};
meta = with stdenv.lib; {
description = "Google Spreadsheets client library";
homepage = "https://github.com/burnash/gspread";
license = licenses.mit;
};
}