python311Packages.dissect-sql: format with nixfmt

This commit is contained in:
Fabian Affolter 2024-05-08 01:09:25 +02:00
parent b1ac7d4ad7
commit 45ac464872
1 changed files with 12 additions and 15 deletions

View File

@ -1,12 +1,13 @@
{ lib
, buildPythonPackage
, dissect-cstruct
, dissect-util
, fetchFromGitHub
, pytestCheckHook
, pythonOlder
, setuptools
, setuptools-scm
{
lib,
buildPythonPackage,
dissect-cstruct,
dissect-util,
fetchFromGitHub,
pytestCheckHook,
pythonOlder,
setuptools,
setuptools-scm,
}:
buildPythonPackage rec {
@ -33,13 +34,9 @@ buildPythonPackage rec {
dissect-util
];
nativeCheckInputs = [
pytestCheckHook
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [
"dissect.sql"
];
pythonImportsCheck = [ "dissect.sql" ];
meta = with lib; {
description = "Dissect module implementing a parsers for the SQLite database file format";