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

python312Packages.localzone: format with nixfmt

+12 -19
+12 -19
pkgs/development/python-modules/localzone/default.nix
··· 1 - { lib 2 - , buildPythonPackage 3 - , fetchFromGitHub 4 - , dnspython 5 - , pytestCheckHook 6 - , setuptools 7 - , pythonOlder 1 + { 2 + lib, 3 + buildPythonPackage, 4 + fetchFromGitHub, 5 + dnspython, 6 + pytestCheckHook, 7 + setuptools, 8 + pythonOlder, 8 9 }: 9 10 10 11 buildPythonPackage rec { ··· 21 22 hash = "sha256-quAo5w4Oxu9Hu96inu3vuiQ9GZMLpq0M8Vj67IPYcbE="; 22 23 }; 23 24 24 - build-system = [ 25 - setuptools 26 - ]; 25 + build-system = [ setuptools ]; 27 26 28 - dependencies = [ 29 - dnspython 30 - ]; 27 + dependencies = [ dnspython ]; 31 28 32 - nativeCheckInputs = [ 33 - pytestCheckHook 34 - ]; 29 + nativeCheckInputs = [ pytestCheckHook ]; 35 30 36 - pythonImportsCheck = [ 37 - "localzone" 38 - ]; 31 + pythonImportsCheck = [ "localzone" ]; 39 32 40 33 meta = with lib; { 41 34 description = "A simple DNS library for managing zone files";