flare-floss: format with nixfmt

This commit is contained in:
Fabian Affolter 2024-04-16 10:34:43 +02:00
parent d181aa11d9
commit 9ed6644297
1 changed files with 20 additions and 18 deletions

View File

@ -1,6 +1,7 @@
{ lib
, python3
, fetchFromGitHub
{
lib,
python3,
fetchFromGitHub,
}:
python3.pkgs.buildPythonPackage rec {
@ -24,22 +25,23 @@ python3.pkgs.buildPythonPackage rec {
--replace 'sigs_path = os.path.join(get_default_root(), "sigs")' 'sigs_path = "'"$out"'/share/flare-floss/sigs"'
'';
build-system = with python3.pkgs; [
setuptools
];
build-system = with python3.pkgs; [ setuptools ];
dependencies = with python3.pkgs; [
binary2strings
halo
networkx
pefile
pydantic_1
rich
tabulate
tqdm
viv-utils
vivisect
] ++ viv-utils.optional-dependencies.flirt;
dependencies =
with python3.pkgs;
[
binary2strings
halo
networkx
pefile
pydantic_1
rich
tabulate
tqdm
viv-utils
vivisect
]
++ viv-utils.optional-dependencies.flirt;
nativeCheckInputs = with python3.pkgs; [
pytest-sugar