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

View File

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