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

python312Packages.google-cloud-asset: format with nixfmt

+20 -23
+20 -23
pkgs/development/python-modules/google-cloud-asset/default.nix
··· 1 - { lib 2 - , buildPythonPackage 3 - , fetchPypi 4 - , google-api-core 5 - , google-cloud-access-context-manager 6 - , google-cloud-org-policy 7 - , google-cloud-os-config 8 - , google-cloud-testutils 9 - , grpc-google-iam-v1 10 - , libcst 11 - , mock 12 - , proto-plus 13 - , protobuf 14 - , pytest-asyncio 15 - , pytestCheckHook 16 - , pythonOlder 17 - , setuptools 1 + { 2 + lib, 3 + buildPythonPackage, 4 + fetchPypi, 5 + google-api-core, 6 + google-cloud-access-context-manager, 7 + google-cloud-org-policy, 8 + google-cloud-os-config, 9 + google-cloud-testutils, 10 + grpc-google-iam-v1, 11 + libcst, 12 + mock, 13 + proto-plus, 14 + protobuf, 15 + pytest-asyncio, 16 + pytestCheckHook, 17 + pythonOlder, 18 + setuptools, 18 19 }: 19 20 20 21 buildPythonPackage rec { ··· 29 30 hash = "sha256-5O3ge5/ot0zQoLKKPP6E7M2RVtDxnYfe2J0iYJISWX4="; 30 31 }; 31 32 32 - build-system = [ 33 - setuptools 34 - ]; 33 + build-system = [ setuptools ]; 35 34 36 35 dependencies = [ 37 36 grpc-google-iam-v1 ··· 45 44 ] ++ google-api-core.optional-dependencies.grpc; 46 45 47 46 passthru.optional-dependencies = { 48 - libcst = [ 49 - libcst 50 - ]; 47 + libcst = [ libcst ]; 51 48 }; 52 49 53 50 nativeCheckInputs = [