python312Packages.ifconfig-parser: format with nixfmt

+8 -12
+8 -12
pkgs/development/python-modules/ifconfig-parser/default.nix
··· 1 - { lib 2 - , buildPythonPackage 3 - , fetchFromGitHub 4 - , setuptools 5 - , pythonOlder 1 + { 2 + lib, 3 + buildPythonPackage, 4 + fetchFromGitHub, 5 + setuptools, 6 + pythonOlder, 6 7 }: 7 8 8 9 buildPythonPackage rec { ··· 19 20 hash = "sha256-TXa7oQ8AyTIdaSK4SH+RN2bDPtVqNvofPvlqHPKaCx4="; 20 21 }; 21 22 22 - build-system = [ 23 - setuptools 24 - ]; 25 - 23 + build-system = [ setuptools ]; 26 24 27 25 checkPhase = '' 28 26 export PYTHONPATH=$PYTHONPATH:$(pwd)/ifconfigparser:$(pwd)/ifconfigparser/tests 29 27 python -m unittest -v test_ifconfig_parser.TestIfconfigParser 30 28 ''; 31 29 32 - pythonImportsCheck = [ 33 - "ifconfigparser" 34 - ]; 30 + pythonImportsCheck = [ "ifconfigparser" ]; 35 31 36 32 meta = with lib; { 37 33 description = "Module for parsing raw output of ifconfig";