summary refs log tree commit diff
path: root/pkgs/development/python-modules/gspread/default.nix
blob: 5c9c644abd3c4a55ce7f6bbf4bb5380c5e7792bd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{ stdenv
, buildPythonPackage
, fetchPypi
, requests
, google_auth
}:

buildPythonPackage rec {
  version = "3.6.0";
  pname = "gspread";

  src = fetchPypi {
    inherit pname version;
    sha256 = "e04f1a6267b3929fc1600424c5ec83906d439672cafdd61a9d5b916a139f841c";
  };

  propagatedBuildInputs = [ requests ];

  meta = with stdenv.lib; {
    description = "Google Spreadsheets client library";
    homepage = "https://github.com/burnash/gspread";
    license = licenses.mit;
    # missing multiple google libraries
    broken = true; # 2020-08-15
  };

  # No tests included
  doCheck = false;

}