python312Packages.whispers: format with nixfmt

Changed files
+18 -21
pkgs
development
python-modules
whispers
+18 -21
pkgs/development/python-modules/whispers/default.nix
··· 1 - { lib 2 - , astroid 3 - , beautifulsoup4 4 - , buildPythonPackage 5 - , crossplane 6 - , fetchFromGitHub 7 - , jellyfish 8 - , jproperties 9 - , luhn 10 - , lxml 11 - , pytest-mock 12 - , pytestCheckHook 13 - , pythonOlder 14 - , pyyaml 15 - , setuptools 1 + { 2 + lib, 3 + astroid, 4 + beautifulsoup4, 5 + buildPythonPackage, 6 + crossplane, 7 + fetchFromGitHub, 8 + jellyfish, 9 + jproperties, 10 + luhn, 11 + lxml, 12 + pytest-mock, 13 + pytestCheckHook, 14 + pythonOlder, 15 + pyyaml, 16 + setuptools, 16 17 }: 17 18 18 19 buildPythonPackage rec { ··· 34 35 --replace-fail '"pytest-runner"' "" 35 36 ''; 36 37 37 - build-system = [ 38 - setuptools 39 - ]; 38 + build-system = [ setuptools ]; 40 39 41 40 dependencies = [ 42 41 astroid ··· 59 58 export PATH=$out/bin:$PATH 60 59 ''; 61 60 62 - pythonImportsCheck = [ 63 - "whispers" 64 - ]; 61 + pythonImportsCheck = [ "whispers" ]; 65 62 66 63 meta = with lib; { 67 64 description = "Tool to identify hardcoded secrets in static structured text";