python313Packages.onedrive-personal-sdk: init at 0.0.8

This commit is contained in:
Robert Schütz
2025-02-06 18:55:26 +01:00
committed by Martin Weinelt
parent bf9e291b12
commit 4f10062f19
2 changed files with 43 additions and 0 deletions
@@ -0,0 +1,41 @@
{
aiohttp,
buildPythonPackage,
fetchFromGitHub,
lib,
mashumaro,
setuptools,
}:
buildPythonPackage rec {
pname = "onedrive-personal-sdk";
version = "0.0.8";
pyproject = true;
src = fetchFromGitHub {
owner = "zweckj";
repo = "onedrive-personal-sdk";
tag = "v${version}";
hash = "sha256-sA+1yqRcx7WUJFuMIIuPQm7ggVbrlSCufqq0jyhDDdA=";
};
build-system = [ setuptools ];
dependencies = [
aiohttp
mashumaro
];
pythonImportsCheck = [ "onedrive_personal_sdk" ];
# upstream has no tests
doCheck = false;
meta = {
changelog = "https://github.com/zweckj/onedrive-personal-sdk/releases/tag/${src.tag}";
description = "Package to interact with the Microsoft Graph API for personal OneDrives";
homepage = "https://github.com/zweckj/onedrive-personal-sdk";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ dotlambda ];
};
}
+2
View File
@@ -9688,6 +9688,8 @@ self: super: with self; {
onecache = callPackage ../development/python-modules/onecache { };
onedrive-personal-sdk = callPackage ../development/python-modules/onedrive-personal-sdk { };
onetimepass = callPackage ../development/python-modules/onetimepass { };
onigurumacffi = callPackage ../development/python-modules/onigurumacffi { };