nixpkgs/pkgs/development/python-modules/gspread/default.nix
2018-12-03 16:50:30 +01:00

22 lines
421 B
Nix

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