python311Packages.malduck: format with nixfmt

This commit is contained in:
Fabian Affolter 2024-05-11 21:47:12 +02:00
parent a7c2e7306a
commit 5f5a15d037

View File

@ -1,18 +1,19 @@
{ lib
, buildPythonPackage
, capstone
, click
, cryptography
, dnfile
, fetchFromGitHub
, pefile
, pycryptodomex
, pyelftools
, pythonOlder
, setuptools
, pytestCheckHook
, typing-extensions
, yara-python
{
lib,
buildPythonPackage,
capstone,
click,
cryptography,
dnfile,
fetchFromGitHub,
pefile,
pycryptodomex,
pyelftools,
pythonOlder,
setuptools,
pytestCheckHook,
typing-extensions,
yara-python,
}:
buildPythonPackage rec {
@ -29,9 +30,7 @@ buildPythonPackage rec {
hash = "sha256-Btx0HxiZWrb0TDpBokQGtBE2EDK0htONe/DwqlPgAd4=";
};
build-system = [
setuptools
];
build-system = [ setuptools ];
dependencies = [
capstone
@ -45,13 +44,9 @@ buildPythonPackage rec {
yara-python
];
nativeCheckInputs = [
pytestCheckHook
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [
"malduck"
];
pythonImportsCheck = [ "malduck" ];
meta = with lib; {
description = "Helper for malware analysis";