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 { lib
, azure-common
, azure-mgmt-core
, buildPythonPackage , buildPythonPackage
, fetchPypi , fetchPypi
, isodate
, msal
, pythonOlder , pythonOlder
, azure-core
, cryptography
, msal
, msal-extensions
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@ -21,10 +21,10 @@ buildPythonPackage rec {
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [
azure-common azure-core
azure-mgmt-core cryptography
isodate
msal msal
msal-extensions
]; ];
pythonImportsCheck = [ pythonImportsCheck = [
@ -38,7 +38,7 @@ buildPythonPackage rec {
meta = with lib; { meta = with lib; {
description = "Microsoft Azure Identity Library for Python"; description = "Microsoft Azure Identity Library for Python";
homepage = "https://github.com/Azure/azure-sdk-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; license = licenses.mit;
maintainers = with maintainers; [ kamadorueda ]; maintainers = with maintainers; [ kamadorueda ];
}; };