python311Packages.dissect-hypervisor: format with nixfmt

This commit is contained in:
Fabian Affolter 2024-05-08 01:11:34 +02:00
parent 0b283b3ad2
commit 5ecb8bae52
1 changed files with 15 additions and 18 deletions

View File

@ -1,15 +1,16 @@
{ lib
, buildPythonPackage
, defusedxml
, dissect-cstruct
, dissect-util
, fetchFromGitHub
, pycryptodome
, pytestCheckHook
, pythonOlder
, rich
, setuptools
, setuptools-scm
{
lib,
buildPythonPackage,
defusedxml,
dissect-cstruct,
dissect-util,
fetchFromGitHub,
pycryptodome,
pytestCheckHook,
pythonOlder,
rich,
setuptools,
setuptools-scm,
}:
buildPythonPackage rec {
@ -44,13 +45,9 @@ buildPythonPackage rec {
];
};
nativeCheckInputs = [
pytestCheckHook
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [
"dissect.hypervisor"
];
pythonImportsCheck = [ "dissect.hypervisor" ];
meta = with lib; {
description = "Dissect module implementing parsers for various hypervisor disk, backup and configuration files";