1{ 2 aiohttp, 3 buildPythonPackage, 4 fetchFromGitHub, 5 lib, 6 mashumaro, 7 setuptools, 8}: 9 10buildPythonPackage rec { 11 pname = "onedrive-personal-sdk"; 12 version = "0.0.14"; 13 pyproject = true; 14 15 src = fetchFromGitHub { 16 owner = "zweckj"; 17 repo = "onedrive-personal-sdk"; 18 tag = "v${version}"; 19 hash = "sha256-WdnkIMmTzvid2bl7n9NHMtF153O91hutMib8bs5BgIs="; 20 }; 21 22 build-system = [ setuptools ]; 23 24 dependencies = [ 25 aiohttp 26 mashumaro 27 ]; 28 29 pythonImportsCheck = [ "onedrive_personal_sdk" ]; 30 31 # upstream has no tests 32 doCheck = false; 33 34 meta = { 35 changelog = "https://github.com/zweckj/onedrive-personal-sdk/releases/tag/${src.tag}"; 36 description = "Package to interact with the Microsoft Graph API for personal OneDrives"; 37 homepage = "https://github.com/zweckj/onedrive-personal-sdk"; 38 license = lib.licenses.mit; 39 maintainers = with lib.maintainers; [ dotlambda ]; 40 }; 41}