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

python312Packages.pytest-json-report: format with nixfmt

+14 -21
+14 -21
pkgs/development/python-modules/pytest-json-report/default.nix
··· 1 - { lib 2 - , buildPythonPackage 3 - , fetchFromGitHub 4 - , pytest 5 - , pytest-metadata 6 - , pytest-xdist 7 - , pytestCheckHook 8 - , pythonOlder 9 - , setuptools 1 + { 2 + lib, 3 + buildPythonPackage, 4 + fetchFromGitHub, 5 + pytest, 6 + pytest-metadata, 7 + pytest-xdist, 8 + pytestCheckHook, 9 + pythonOlder, 10 + setuptools, 10 11 }: 11 12 12 13 buildPythonPackage rec { ··· 23 24 hash = "sha256-hMB/atDuo7CjwhHFUOxVfgJ7Qp4AA9J428iv7hyQFcs="; 24 25 }; 25 26 26 - build-system = [ 27 - setuptools 28 - ]; 27 + build-system = [ setuptools ]; 29 28 30 - buildInputs = [ 31 - pytest 32 - ]; 29 + buildInputs = [ pytest ]; 33 30 34 - dependencies = [ 35 - pytest-metadata 36 - ]; 31 + dependencies = [ pytest-metadata ]; 37 32 38 33 nativeCheckInputs = [ 39 34 pytest-xdist ··· 49 44 "test_report_crash_and_traceback" 50 45 ]; 51 46 52 - pythonImportsCheck = [ 53 - "pytest_jsonreport" 54 - ]; 47 + pythonImportsCheck = [ "pytest_jsonreport" ]; 55 48 56 49 meta = with lib; { 57 50 description = "Pytest plugin to report test results as JSON";