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

22 lines
421 B
Nix
Raw Normal View History

{ stdenv
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
2019-02-14 10:37:17 +03:00
version = "3.1.0";
pname = "gspread";
src = fetchPypi {
inherit pname version;
2019-02-14 10:37:17 +03:00
sha256 = "f7ce6c06250f694976c3cd4944e3b607b0810b93383839e5b67c7199ce2f0d3d";
};
meta = with stdenv.lib; {
description = "Google Spreadsheets client library";
homepage = "https://github.com/burnash/gspread";
license = licenses.mit;
};
}