blob: c487881f92b454c8b1d600cd3b035d20de6f97e9 (
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
47
48
49
50
|
{
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 ];
};
}
|