python311Packages.dissect-evidence: format with nixfmt

This commit is contained in:
Fabian Affolter 2024-05-08 01:16:18 +02:00
parent bb94985b45
commit e7afd61c43

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.evidence" ];
"dissect.evidence"
];
meta = with lib; { meta = with lib; {
description = "Dissect module implementing a parsers for various forensic evidence file containers"; description = "Dissect module implementing a parsers for various forensic evidence file containers";