biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / microsoft-kiota-authentication-azure / default.nix
blob766a036ed76c47ce33ef1dce195850cebb189acc
2   lib,
3   aiohttp,
4   azure-core,
5   buildPythonPackage,
6   fetchFromGitHub,
7   flit-core,
8   microsoft-kiota-abstractions,
9   opentelemetry-api,
10   opentelemetry-sdk,
11   pytest-asyncio,
12   pytest-mock,
13   pytestCheckHook,
14   pythonOlder,
17 buildPythonPackage rec {
18   pname = "microsoft-kiota-authentication-azure";
19   version = "1.1.0";
20   pyproject = true;
22   disabled = pythonOlder "3.8";
24   src = fetchFromGitHub {
25     owner = "microsoft";
26     repo = "kiota-authentication-azure-python";
27     rev = "refs/tags/v${version}";
28     hash = "sha256-JoR7qjAPNqtcV35AGwbyjhIro6AnFUZXXLHLOj7InY8=";
29   };
31   build-system = [ flit-core ];
33   dependencies = [
34     aiohttp
35     azure-core
36     microsoft-kiota-abstractions
37     opentelemetry-api
38     opentelemetry-sdk
39   ];
41   nativeCheckInputs = [
42     pytest-asyncio
43     pytest-mock
44     pytestCheckHook
45   ];
47   pythonImportsCheck = [ "kiota_authentication_azure" ];
49   meta = with lib; {
50     description = "Kiota Azure authentication provider";
51     homepage = "https://github.com/microsoft/kiota-authentication-azure-python";
52     changelog = "https://github.com/microsoft/kiota-authentication-azure-python/blob/v${version}/CHANGELOG.md";
53     license = licenses.mit;
54     maintainers = with maintainers; [ fab ];
55   };