forked from mirrors/nixpkgs
a12c5f1e06
Diff: https://github.com/CERT-Polska/malduck/compare/refs/tags/v4.2.0...v4.3.0 Changelog: https://github.com/CERT-Polska/malduck/releases/tag/v4.3.0
65 lines
1.2 KiB
Nix
65 lines
1.2 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, capstone
|
|
, click
|
|
, cryptography
|
|
, dnfile
|
|
, fetchFromGitHub
|
|
, pefile
|
|
, pycryptodomex
|
|
, pyelftools
|
|
, pythonOlder
|
|
, pytestCheckHook
|
|
, typing-extensions
|
|
, yara-python
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "malduck";
|
|
version = "4.3.0";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "CERT-Polska";
|
|
repo = pname;
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-1gwJhlhRLnh01AIJj07Wpba8X7V5AfACuJmZX+cfT6Y=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
capstone
|
|
click
|
|
cryptography
|
|
dnfile
|
|
pefile
|
|
pycryptodomex
|
|
pyelftools
|
|
typing-extensions
|
|
yara-python
|
|
];
|
|
|
|
postPatch = ''
|
|
substituteInPlace requirements.txt \
|
|
--replace "pefile==2019.4.18" "pefile" \
|
|
--replace "dnfile==0.11.0" "dnfile"
|
|
'';
|
|
|
|
checkInputs = [
|
|
pytestCheckHook
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"malduck"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Helper for malware analysis";
|
|
homepage = "https://github.com/CERT-Polska/malduck";
|
|
changelog = "https://github.com/CERT-Polska/malduck/releases/tag/v${version}";
|
|
license = with licenses; [ bsd3 ];
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|