python311Packages.dissect-cstruct: format with nixfmt

This commit is contained in:
Fabian Affolter 2024-05-08 00:58:50 +02:00
parent fabbc7b417
commit da555de3a3

View File

@ -1,10 +1,11 @@
{ lib {
, buildPythonPackage lib,
, fetchFromGitHub buildPythonPackage,
, setuptools fetchFromGitHub,
, setuptools-scm setuptools,
, pytestCheckHook setuptools-scm,
, pythonOlder pytestCheckHook,
pythonOlder,
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@ -26,13 +27,9 @@ buildPythonPackage rec {
setuptools-scm setuptools-scm
]; ];
nativeCheckInputs = [ nativeCheckInputs = [ pytestCheckHook ];
pytestCheckHook
];
pythonImportsCheck = [ pythonImportsCheck = [ "dissect.cstruct" ];
"dissect.cstruct"
];
meta = with lib; { meta = with lib; {
description = "Dissect module implementing a parser for C-like structures"; description = "Dissect module implementing a parser for C-like structures";