diff options
Diffstat (limited to 'pkgs/development/python-modules/msal/default.nix')
-rw-r--r-- | pkgs/development/python-modules/msal/default.nix | 34 |
1 files changed, 15 insertions, 19 deletions
diff --git a/pkgs/development/python-modules/msal/default.nix b/pkgs/development/python-modules/msal/default.nix index a736cffb9b30..bfbaabb54505 100644 --- a/pkgs/development/python-modules/msal/default.nix +++ b/pkgs/development/python-modules/msal/default.nix @@ -1,43 +1,39 @@ -{ lib -, cryptography -, buildPythonPackage -, fetchPypi -, pyjwt -, pythonOlder -, requests -, setuptools +{ + lib, + cryptography, + buildPythonPackage, + fetchPypi, + pyjwt, + pythonOlder, + requests, + setuptools, }: buildPythonPackage rec { pname = "msal"; - version = "1.28.0"; + version = "1.31.0"; pyproject = true; disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; - hash = "sha256-gLur40Vny3NO/S7BhpstmBlcknRVNp2Ad7PFQgiMXJ0="; + hash = "sha256-LE8YnPnMjwDIAEX2bTm3wPPtRYc/09Hyr58i2y4S/0s="; }; - nativeBuildInputs = [ - setuptools - ]; + build-system = [ setuptools ]; - propagatedBuildInputs = [ + dependencies = [ cryptography pyjwt requests - ] - ++ pyjwt.optional-dependencies.crypto; + ] ++ pyjwt.optional-dependencies.crypto; # Tests assume Network Connectivity: # https://github.com/AzureAD/microsoft-authentication-library-for-python/blob/e2958961e8ec16d0af4199f60c36c3f913497e48/tests/test_authority.py#L73 doCheck = false; - pythonImportsCheck = [ - "msal" - ]; + pythonImportsCheck = [ "msal" ]; meta = with lib; { 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"; |