2025-02-02 11:54:00 -08:00
|
|
|
{
|
|
|
|
aiohttp,
|
|
|
|
buildPythonPackage,
|
|
|
|
fetchFromGitHub,
|
|
|
|
lib,
|
|
|
|
mashumaro,
|
|
|
|
pytestCheckHook,
|
|
|
|
setuptools,
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "python-google-drive-api";
|
2025-02-10 23:07:26 +01:00
|
|
|
version = "0.1.0";
|
2025-02-02 11:54:00 -08:00
|
|
|
pyproject = true;
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "tronikos";
|
|
|
|
repo = "python-google-drive-api";
|
|
|
|
tag = "v${version}";
|
2025-02-10 23:07:26 +01:00
|
|
|
hash = "sha256-3es2rmndahH+DMEEwjBxyZKd27qDZIocPbzScF7B5fA=";
|
2025-02-02 11:54:00 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|