mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-03-15 04:16:30 +01:00
Diff: https://github.com/microsoftgraph/msgraph-sdk-python/compare/v1.54.0...v1.55.0 Changelog: https://github.com/microsoftgraph/msgraph-sdk-python/blob/v1.55.0/CHANGELOG.md
55 lines
1.4 KiB
Nix
55 lines
1.4 KiB
Nix
{
|
|
lib,
|
|
azure-identity,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
flit-core,
|
|
microsoft-kiota-abstractions,
|
|
microsoft-kiota-authentication-azure,
|
|
microsoft-kiota-http,
|
|
microsoft-kiota-serialization-form,
|
|
microsoft-kiota-serialization-json,
|
|
microsoft-kiota-serialization-multipart,
|
|
microsoft-kiota-serialization-text,
|
|
msgraph-core,
|
|
}:
|
|
|
|
buildPythonPackage (finalAttrs: {
|
|
pname = "msgraph-sdk";
|
|
version = "1.55.0";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "microsoftgraph";
|
|
repo = "msgraph-sdk-python";
|
|
tag = "v${finalAttrs.version}";
|
|
hash = "sha256-F6iL+bQS/r7t9NUGtspNx8E0viK4Fm211AqrxNgNGqg=";
|
|
};
|
|
|
|
build-system = [ flit-core ];
|
|
|
|
dependencies = [
|
|
azure-identity
|
|
microsoft-kiota-abstractions
|
|
microsoft-kiota-authentication-azure
|
|
microsoft-kiota-http
|
|
microsoft-kiota-serialization-form
|
|
microsoft-kiota-serialization-json
|
|
microsoft-kiota-serialization-multipart
|
|
microsoft-kiota-serialization-text
|
|
msgraph-core
|
|
];
|
|
|
|
# Module doesn't have tests
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "msgraph" ];
|
|
|
|
meta = {
|
|
description = "Microsoft Graph SDK for Python";
|
|
homepage = "https://github.com/microsoftgraph/msgraph-sdk-python";
|
|
changelog = "https://github.com/microsoftgraph/msgraph-sdk-python/blob/${finalAttrs.src.tag}/CHANGELOG.md";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ fab ];
|
|
};
|
|
})
|