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

View File

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