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

python311Packages.dissect-shellitem: format with nixfmt

+12 -15
+12 -15
pkgs/development/python-modules/dissect-shellitem/default.nix
··· 1 - { lib 2 - , buildPythonPackage 3 - , dissect-cstruct 4 - , dissect-util 5 - , fetchFromGitHub 6 - , setuptools 7 - , setuptools-scm 8 - , pytestCheckHook 9 - , pythonOlder 1 + { 2 + lib, 3 + buildPythonPackage, 4 + dissect-cstruct, 5 + dissect-util, 6 + fetchFromGitHub, 7 + setuptools, 8 + setuptools-scm, 9 + pytestCheckHook, 10 + pythonOlder, 10 11 }: 11 12 12 13 buildPythonPackage rec { ··· 33 34 dissect-util 34 35 ]; 35 36 36 - nativeCheckInputs = [ 37 - pytestCheckHook 38 - ]; 37 + nativeCheckInputs = [ pytestCheckHook ]; 39 38 40 - pythonImportsCheck = [ 41 - "dissect.shellitem" 42 - ]; 39 + pythonImportsCheck = [ "dissect.shellitem" ]; 43 40 44 41 meta = with lib; { 45 42 description = "Dissect module implementing a parser for the Shellitem structures";