python311Packages.dissect-evidence: format with nixfmt

This commit is contained in:
Fabian Affolter 2024-05-08 01:17:17 +02:00
parent 2e197e83ae
commit 7e20be4d98
1 changed files with 12 additions and 15 deletions

View File

@ -1,12 +1,13 @@
{ lib
, buildPythonPackage
, dissect-cstruct
, dissect-util
, fetchFromGitHub
, setuptools
, setuptools-scm
, pytestCheckHook
, pythonOlder
{
lib,
buildPythonPackage,
dissect-cstruct,
dissect-util,
fetchFromGitHub,
setuptools,
setuptools-scm,
pytestCheckHook,
pythonOlder,
}:
buildPythonPackage rec {
@ -33,13 +34,9 @@ buildPythonPackage rec {
dissect-util
];
nativeCheckInputs = [
pytestCheckHook
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [
"dissect.etl"
];
pythonImportsCheck = [ "dissect.etl" ];
meta = with lib; {
description = "Dissect module implementing a parser for Event Trace Log (ETL) files";