Merge pull request #272020 from a-n-n-a-l-e-e/azure-identity

python311Packages.azure-identity: fix propogatedBuildImports and darwin

authored by Fabian Affolter and committed by GitHub a7013eda e8b20a3e

+8 -8
+8 -8
pkgs/development/python-modules/azure-identity/default.nix
··· 1 1 { lib 2 - , azure-common 3 - , azure-mgmt-core 4 2 , buildPythonPackage 5 3 , fetchPypi 6 - , isodate 7 - , msal 8 4 , pythonOlder 5 + , azure-core 6 + , cryptography 7 + , msal 8 + , msal-extensions 9 9 }: 10 10 11 11 buildPythonPackage rec { ··· 21 21 }; 22 22 23 23 propagatedBuildInputs = [ 24 - azure-common 25 - azure-mgmt-core 26 - isodate 24 + azure-core 25 + cryptography 27 26 msal 27 + msal-extensions 28 28 ]; 29 29 30 30 pythonImportsCheck = [ ··· 38 38 meta = with lib; { 39 39 description = "Microsoft Azure Identity Library for Python"; 40 40 homepage = "https://github.com/Azure/azure-sdk-for-python"; 41 - changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-identity_${version}/sdk/keyvault/azure-mgmt-keyvault/CHANGELOG.md"; 41 + changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-identity_${version}/sdk/identity/azure-identity/CHANGELOG.md"; 42 42 license = licenses.mit; 43 43 maintainers = with maintainers; [ kamadorueda ]; 44 44 };