python313Packages.python-google-drive-api: init at 0.0.2 (#378918)

This commit is contained in:
Robert Schütz
2025-02-03 10:45:02 -08:00
committed by GitHub
2 changed files with 44 additions and 0 deletions
@@ -0,0 +1,42 @@
{
aiohttp,
buildPythonPackage,
fetchFromGitHub,
lib,
mashumaro,
pytestCheckHook,
setuptools,
}:
buildPythonPackage rec {
pname = "python-google-drive-api";
version = "0.0.2";
pyproject = true;
src = fetchFromGitHub {
owner = "tronikos";
repo = "python-google-drive-api";
tag = "v${version}";
hash = "sha256-JvPaMD7UHDqCQCoh1Q8jNFw4R7Jbp2YQDBI3xVp1L1g=";
};
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 ];
};
}
+2
View File
@@ -9505,6 +9505,8 @@ self: super: with self; {
python-debian = callPackage ../development/python-modules/python-debian { };
python-google-drive-api = callPackage ../development/python-modules/python-google-drive-api { };
python-hcl2 = callPackage ../development/python-modules/python-hcl2 { };
python-lorem = callPackage ../development/python-modules/python-lorem { };