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