python311Packages.microsoft-kiota-authentication-azure: init at 1.0.0

Kiota Azure authentication provider

https://github.com/microsoft/kiota-authentication-azure-python
This commit is contained in:
Fabian Affolter
2024-03-04 17:02:26 +01:00
parent 67390d0b0f
commit 518839303f
2 changed files with 61 additions and 0 deletions
@@ -0,0 +1,59 @@
{ lib
, aiohttp
, azure-core
, buildPythonPackage
, fetchFromGitHub
, flit-core
, microsoft-kiota-abstractions
, opentelemetry-api
, opentelemetry-sdk
, pytest-asyncio
, pytest-mock
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "microsoft-kiota-authentication-azure";
version = "1.0.0";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "microsoft";
repo = "kiota-authentication-azure-python";
rev = "refs/tags/v${version}";
hash = "sha256-RA0BbIwDs3cXiH4tQsvCGUO1OAg+DWjEeWd7MEVIC8E=";
};
nativeBuildInputs = [
flit-core
];
propagatedBuildInputs = [
aiohttp
azure-core
microsoft-kiota-abstractions
opentelemetry-api
opentelemetry-sdk
];
nativeCheckInputs = [
pytest-asyncio
pytest-mock
pytestCheckHook
];
pythonImportsCheck = [
"kiota_authentication_azure"
];
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/${version}/CHANGELOG.md";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}
+2
View File
@@ -7182,6 +7182,8 @@ self: super: with self; {
microsoft-kiota-abstractions = callPackage ../development/python-modules/microsoft-kiota-abstractions { };
microsoft-kiota-authentication-azure = callPackage ../development/python-modules/microsoft-kiota-authentication-azure { };
midiutil = callPackage ../development/python-modules/midiutil { };
mido = callPackage ../development/python-modules/mido { };