python313Packages.msgraph-sdk: 1.51.0 -> 1.52.0 (#478330)

This commit is contained in:
Fabian Affolter
2026-01-09 20:34:17 +00:00
committed by GitHub
@@ -14,16 +14,16 @@
msgraph-core,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "msgraph-sdk";
version = "1.51.0";
version = "1.52.0";
pyproject = true;
src = fetchFromGitHub {
owner = "microsoftgraph";
repo = "msgraph-sdk-python";
tag = "v${version}";
hash = "sha256-ZpzbDQ+HF49WJdXeyKcUs6wgmy0/YLNFH21wQ9bE0/o=";
tag = "v${finalAttrs.version}";
hash = "sha256-7HLPkyWlslMuYdoQ4K6Zm7YZ+qp93P/fZdxZrb4X6aI=";
};
build-system = [ flit-core ];
@@ -48,8 +48,8 @@ buildPythonPackage rec {
meta = {
description = "Microsoft Graph SDK for Python";
homepage = "https://github.com/microsoftgraph/msgraph-sdk-python";
changelog = "https://github.com/microsoftgraph/msgraph-sdk-python/blob/${src.tag}/CHANGELOG.md";
changelog = "https://github.com/microsoftgraph/msgraph-sdk-python/blob/${finalAttrs.src.tag}/CHANGELOG.md";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
}
})