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

python311Packages.dissect-clfs: format with nixfmt

+12 -17
+12 -17
pkgs/development/python-modules/dissect-clfs/default.nix
··· 1 - { lib 2 - , buildPythonPackage 3 - , dissect-cstruct 4 - , fetchFromGitHub 5 - , setuptools 6 - , setuptools-scm 7 - , pytestCheckHook 8 - , pythonOlder 9 }: 10 11 buildPythonPackage rec { ··· 27 setuptools-scm 28 ]; 29 30 - dependencies = [ 31 - dissect-cstruct 32 - ]; 33 34 - nativeCheckInputs = [ 35 - pytestCheckHook 36 - ]; 37 38 - pythonImportsCheck = [ 39 - "dissect.clfs" 40 - ]; 41 42 meta = with lib; { 43 description = "Dissect module implementing a parser for the CLFS (Common Log File System) file system";
··· 1 + { 2 + lib, 3 + buildPythonPackage, 4 + dissect-cstruct, 5 + fetchFromGitHub, 6 + setuptools, 7 + setuptools-scm, 8 + pytestCheckHook, 9 + pythonOlder, 10 }: 11 12 buildPythonPackage rec { ··· 28 setuptools-scm 29 ]; 30 31 + dependencies = [ dissect-cstruct ]; 32 33 + nativeCheckInputs = [ pytestCheckHook ]; 34 35 + pythonImportsCheck = [ "dissect.clfs" ]; 36 37 meta = with lib; { 38 description = "Dissect module implementing a parser for the CLFS (Common Log File System) file system";