Commit 5f5a15d0 authored by Fabian Affolter's avatar Fabian Affolter
Browse files

python311Packages.malduck: format with nixfmt

parent a7c2e730
Loading
Loading
Loading
Loading
+19 −24
Original line number Diff line number Diff line
{ 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";