blob: 854385113b8c4d84f5efa27e79f88a5fb5fc0161 (
plain)
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
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
pytestCheckHook,
pyfakefs,
tzlocal,
google-api-python-client,
google-auth-httplib2,
google-auth-oauthlib,
python-dateutil,
beautiful-date,
}:
buildPythonPackage rec {
pname = "gcsa";
version = "2.6.0";
format = "setuptools";
src = fetchFromGitHub {
owner = "kuzmoyev";
repo = "google-calendar-simple-api";
rev = "v${version}";
hash = "sha256-I4IKuG9/4/JrEQ7PD1BwGFmCa1q3GOe4srHmpwt1OUU=";
};
propagatedBuildInputs = [
tzlocal
google-api-python-client
google-auth-httplib2
google-auth-oauthlib
python-dateutil
beautiful-date
];
nativeCheckInputs = [
pytestCheckHook
pyfakefs
];
pythonImportsCheck = [ "gcsa" ];
meta = {
description = "Pythonic wrapper for the Google Calendar API";
homepage = "https://github.com/kuzmoyev/google-calendar-simple-api";
license = lib.licenses.mit;
maintainers = [ ];
};
}
|