58 lines
1.4 KiB
Nix
58 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,
|
|
pythonOlder,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "msgraph-sdk";
|
|
version = "1.12.0";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "microsoftgraph";
|
|
repo = "msgraph-sdk-python";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-RB5DxcddMmByWZ4XA/SaIVVxPXdqSRCUbTeWIR5YW2g=";
|
|
};
|
|
|
|
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 = with lib; {
|
|
description = "Microsoft Graph SDK for Python";
|
|
homepage = "https://github.com/microsoftgraph/msgraph-sdk-python";
|
|
changelog = "https://github.com/microsoftgraph/msgraph-sdk-python/blob/v${version}/CHANGELOG.md";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|