python3Packages.malduck: init at 4.1.0
This commit is contained in:
parent
e019872af8
commit
5bb9bce7ed
48
pkgs/development/python-modules/malduck/default.nix
Normal file
48
pkgs/development/python-modules/malduck/default.nix
Normal file
@ -0,0 +1,48 @@
|
|||||||
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, capstone
|
||||||
|
, click
|
||||||
|
, cryptography
|
||||||
|
, fetchFromGitHub
|
||||||
|
, pefile
|
||||||
|
, pycryptodomex
|
||||||
|
, pyelftools
|
||||||
|
, pythonOlder
|
||||||
|
, typing-extensions
|
||||||
|
, yara-python
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "malduck";
|
||||||
|
version = "4.1.0";
|
||||||
|
disabled = pythonOlder "3.7";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "CERT-Polska";
|
||||||
|
repo = pname;
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "04d8bhzax9ynbl83hif9i8gcs29zrvcay2r6n7mcxiixlxcqciak";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
capstone
|
||||||
|
click
|
||||||
|
cryptography
|
||||||
|
pefile
|
||||||
|
pycryptodomex
|
||||||
|
pyelftools
|
||||||
|
typing-extensions
|
||||||
|
yara-python
|
||||||
|
];
|
||||||
|
|
||||||
|
# Project has no tests. They will come with the next release
|
||||||
|
doCheck = false;
|
||||||
|
pythonImportsCheck = [ "malduck" ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Helper for malware analysis";
|
||||||
|
homepage = "https://github.com/CERT-Polska/malduck";
|
||||||
|
license = with licenses; [ bsd3 ];
|
||||||
|
maintainers = with maintainers; [ fab ];
|
||||||
|
};
|
||||||
|
}
|
@ -4154,6 +4154,8 @@ in {
|
|||||||
|
|
||||||
Mako = callPackage ../development/python-modules/Mako { };
|
Mako = callPackage ../development/python-modules/Mako { };
|
||||||
|
|
||||||
|
malduck= callPackage ../development/python-modules/malduck { };
|
||||||
|
|
||||||
managesieve = callPackage ../development/python-modules/managesieve { };
|
managesieve = callPackage ../development/python-modules/managesieve { };
|
||||||
|
|
||||||
manhole = callPackage ../development/python-modules/manhole { };
|
manhole = callPackage ../development/python-modules/manhole { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user