12 buildPythonPackage rec {
17 disabled = pythonOlder "3.7";
20 inherit pname version;
21 hash = "sha256-LE8YnPnMjwDIAEX2bTm3wPPtRYc/09Hyr58i2y4S/0s=";
24 build-system = [ setuptools ];
30 ] ++ pyjwt.optional-dependencies.crypto;
32 # Tests assume Network Connectivity:
33 # https://github.com/AzureAD/microsoft-authentication-library-for-python/blob/e2958961e8ec16d0af4199f60c36c3f913497e48/tests/test_authority.py#L73
36 pythonImportsCheck = [ "msal" ];
39 description = "Library to access the Microsoft Cloud by supporting authentication of users with Microsoft Azure Active Directory accounts (AAD) and Microsoft Accounts (MSA) using industry standard OAuth2 and OpenID Connect";
40 homepage = "https://github.com/AzureAD/microsoft-authentication-library-for-python";
41 changelog = "https://github.com/AzureAD/microsoft-authentication-library-for-python/releases/tag/${version}";
42 license = licenses.mit;
43 maintainers = with maintainers; [ kamadorueda ];