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
1 changed files with 12 additions and 17 deletions

View File

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