python311Packages.dissect-clfs: format with nixfmt

This commit is contained in:
Fabian Affolter 2024-05-08 00:57:18 +02:00
parent 66fe750f5c
commit 557f5eaf7f

View File

@ -1,11 +1,12 @@
{ lib {
, buildPythonPackage lib,
, dissect-cstruct buildPythonPackage,
, fetchFromGitHub dissect-cstruct,
, setuptools fetchFromGitHub,
, setuptools-scm setuptools,
, pytestCheckHook setuptools-scm,
, pythonOlder pytestCheckHook,
pythonOlder,
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@ -27,17 +28,11 @@ buildPythonPackage rec {
setuptools-scm setuptools-scm
]; ];
dependencies = [ dependencies = [ dissect-cstruct ];
dissect-cstruct
];
nativeCheckInputs = [ nativeCheckInputs = [ pytestCheckHook ];
pytestCheckHook
];
pythonImportsCheck = [ pythonImportsCheck = [ "dissect.clfs" ];
"dissect.clfs"
];
meta = with lib; { meta = with lib; {
description = "Dissect module implementing a parser for the CLFS (Common Log File System) file system"; description = "Dissect module implementing a parser for the CLFS (Common Log File System) file system";