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
1 changed files with 10 additions and 13 deletions

View File

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