python312Packages.microsoft-kiota-authentication-azure: 1.1.0 -> 1.9.1

This commit is contained in:
FliegendeWurst
2025-01-30 15:20:07 +01:00
parent e69f8a5c7e
commit b66beb0e2a
@@ -4,7 +4,7 @@
azure-core,
buildPythonPackage,
fetchFromGitHub,
flit-core,
poetry-core,
microsoft-kiota-abstractions,
opentelemetry-api,
opentelemetry-sdk,
@@ -16,19 +16,21 @@
buildPythonPackage rec {
pname = "microsoft-kiota-authentication-azure";
version = "1.1.0";
version = "1.9.1";
pyproject = true;
disabled = pythonOlder "3.8";
disabled = pythonOlder "3.9";
src = fetchFromGitHub {
owner = "microsoft";
repo = "kiota-authentication-azure-python";
tag = "v${version}";
hash = "sha256-JoR7qjAPNqtcV35AGwbyjhIro6AnFUZXXLHLOj7InY8=";
repo = "kiota-python";
tag = "microsoft-kiota-authentication-azure-v${version}";
hash = "sha256-ESRnI8prXG1h5H5RVD4eOQ1sQYSEMMLVHSk8yhzFGVw=";
};
build-system = [ flit-core ];
sourceRoot = "source/packages/authentication/azure/";
build-system = [ poetry-core ];
dependencies = [
aiohttp
@@ -48,8 +50,8 @@ buildPythonPackage rec {
meta = with lib; {
description = "Kiota Azure authentication provider";
homepage = "https://github.com/microsoft/kiota-authentication-azure-python";
changelog = "https://github.com/microsoft/kiota-authentication-azure-python/blob/v${version}/CHANGELOG.md";
homepage = "https://github.com/microsoft/kiota-python/tree/main/packages/authentication/azure";
changelog = "https://github.com/microsoft/kiota-python/releases/tag/microsoft-kiota-authentication-azure-v${version}";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};