summary refs log tree commit diff
path: root/pkgs/development/python-modules/gcsa/default.nix
blob: c4ffcabeb94ded6bc52759e8c87a51a46d8cfc00 (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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{ lib
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
, pytestCheckHook
, pyfakefs
, tzlocal
, google-api-python-client
, google-auth-httplib2
, google-auth-oauthlib
, python-dateutil
, beautiful-date
}:

buildPythonPackage rec {
  pname = "gcsa";
  version = "2.1.0";
  format = "setuptools";
  disabled = pythonOlder "3.6";

  src = fetchFromGitHub {
    owner = "kuzmoyev";
    repo = "google-calendar-simple-api";
    rev = "v${version}";
    hash = "sha256-Ye8mQSzgaEZx0vUpt5xiMrJTFh2AmSB7ZZlKaEj/YpM=";
  };

  propagatedBuildInputs = [
    tzlocal
    google-api-python-client
    google-auth-httplib2
    google-auth-oauthlib
    python-dateutil
    beautiful-date
  ];

  nativeCheckInputs = [ pytestCheckHook pyfakefs ];
  pythonImportsCheck = [ "gcsa" ];

  meta = with lib; {
    description = "Pythonic wrapper for the Google Calendar API";
    homepage = "https://github.com/kuzmoyev/google-calendar-simple-api";
    license = licenses.mit;
    maintainers = with maintainers; [ mbalatsko ];
  };
}