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

python311Packages.azure-identity: fix propogatedBuildImports and darwin
This commit is contained in:
Fabian Affolter 2023-12-04 15:36:45 +01:00 committed by GitHub
commit a7013edac9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,11 +1,11 @@
{ lib
, azure-common
, azure-mgmt-core
, buildPythonPackage
, fetchPypi
, isodate
, msal
, pythonOlder
, azure-core
, cryptography
, msal
, msal-extensions
}:
buildPythonPackage rec {
@ -21,10 +21,10 @@ buildPythonPackage rec {
};
propagatedBuildInputs = [
azure-common
azure-mgmt-core
isodate
azure-core
cryptography
msal
msal-extensions
];
pythonImportsCheck = [
@ -38,7 +38,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Microsoft Azure Identity Library for Python";
homepage = "https://github.com/Azure/azure-sdk-for-python";
changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-identity_${version}/sdk/keyvault/azure-mgmt-keyvault/CHANGELOG.md";
changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-identity_${version}/sdk/identity/azure-identity/CHANGELOG.md";
license = licenses.mit;
maintainers = with maintainers; [ kamadorueda ];
};