Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

python312Packages.microsoft-kiota-abstractions: use nixfmt

+14 -17
+14 -17
pkgs/development/python-modules/microsoft-kiota-abstractions/default.nix
··· 1 - { lib 2 - , buildPythonPackage 3 - , fetchFromGitHub 4 - , flit-core 5 - , opentelemetry-api 6 - , opentelemetry-sdk 7 - , pytest-asyncio 8 - , pytest-mock 9 - , pytestCheckHook 10 - , pythonOlder 11 - , std-uritemplate 1 + { 2 + lib, 3 + buildPythonPackage, 4 + fetchFromGitHub, 5 + flit-core, 6 + opentelemetry-api, 7 + opentelemetry-sdk, 8 + pytest-asyncio, 9 + pytest-mock, 10 + pytestCheckHook, 11 + pythonOlder, 12 + std-uritemplate, 12 13 }: 13 14 14 15 buildPythonPackage rec { ··· 25 26 hash = "sha256-n9Erm21slKm+zDblhSHA5Cwxkyrcyx0w09ua3bUc5XI="; 26 27 }; 27 28 28 - build-system = [ 29 - flit-core 30 - ]; 29 + build-system = [ flit-core ]; 31 30 32 31 dependencies = [ 33 32 opentelemetry-api ··· 41 40 pytestCheckHook 42 41 ]; 43 42 44 - pythonImportsCheck = [ 45 - "kiota_abstractions" 46 - ]; 43 + pythonImportsCheck = [ "kiota_abstractions" ]; 47 44 48 45 meta = with lib; { 49 46 description = "Abstractions library for Kiota generated Python clients";