blob: 2bc0026710065dff0d5b39a3fc8afe0549281982 (
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
|
{
aiohttp,
buildPythonPackage,
fetchFromGitHub,
lib,
mashumaro,
pytestCheckHook,
setuptools,
}:
buildPythonPackage rec {
pname = "python-google-drive-api";
version = "0.1.0";
pyproject = true;
src = fetchFromGitHub {
owner = "tronikos";
repo = "python-google-drive-api";
tag = "v${version}";
hash = "sha256-3es2rmndahH+DMEEwjBxyZKd27qDZIocPbzScF7B5fA=";
};
build-system = [ setuptools ];
dependencies = [
aiohttp
mashumaro
];
pythonImportsCheck = [ "google_drive_api" ];
nativeCheckInputs = [
pytestCheckHook
];
meta = {
description = "Python client library for Google Drive API";
homepage = "https://github.com/tronikos/python-google-drive-api";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ dotlambda ];
};
}
|