Merge pull request #304493 from fabaff/flare-floss-bump

flare-floss: 3.0.1 -> 3.1.0
This commit is contained in:
Fabian Affolter 2024-04-16 12:35:22 +02:00 committed by GitHub
commit 89a3b5a047
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,11 +1,12 @@
{ lib {
, python3 lib,
, fetchFromGitHub python3,
fetchFromGitHub,
}: }:
python3.pkgs.buildPythonPackage rec { python3.pkgs.buildPythonPackage rec {
pname = "flare-floss"; pname = "flare-floss";
version = "3.0.1"; version = "3.1.0";
pyproject = true; pyproject = true;
src = fetchFromGitHub { src = fetchFromGitHub {
@ -13,33 +14,37 @@ python3.pkgs.buildPythonPackage rec {
repo = "flare-floss"; repo = "flare-floss";
rev = "refs/tags/v${version}"; rev = "refs/tags/v${version}";
fetchSubmodules = true; # for tests fetchSubmodules = true; # for tests
hash = "sha256-bmOWOFqyvOvSrNTbwLqo0WMq4IAZxZ0YYaWCdCrpziU="; hash = "sha256-a20q7kavWwCsfnAW02+IY0jKERMxkJ+2nid/CwQxC9E=";
}; };
postPatch = '' postPatch = ''
substituteInPlace setup.py \ substituteInPlace pyproject.toml \
--replace "==" ">=" --replace "==" ">="
substituteInPlace floss/main.py \ substituteInPlace floss/main.py \
--replace 'sigs_path = os.path.join(get_default_root(), "sigs")' 'sigs_path = "'"$out"'/share/flare-floss/sigs"' --replace 'sigs_path = os.path.join(get_default_root(), "sigs")' 'sigs_path = "'"$out"'/share/flare-floss/sigs"'
''; '';
nativeBuildInputs = with python3.pkgs; [ build-system = with python3.pkgs; [
setuptools setuptools
setuptools-scm
]; ];
propagatedBuildInputs = with python3.pkgs; [ dependencies =
binary2strings with python3.pkgs;
halo [
networkx binary2strings
pefile halo
pydantic_1 networkx
rich pefile
tabulate pydantic
tqdm rich
viv-utils tabulate
vivisect tqdm
] ++ viv-utils.optional-dependencies.flirt; viv-utils
vivisect
]
++ viv-utils.optional-dependencies.flirt;
nativeCheckInputs = with python3.pkgs; [ nativeCheckInputs = with python3.pkgs; [
pytest-sugar pytest-sugar