forked from mirrors/nixpkgs
python310Packages.malduck: add format
This commit is contained in:
parent
10fdcd5e47
commit
5ba317f26a
|
@ -15,13 +15,15 @@
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "malduck";
|
pname = "malduck";
|
||||||
version = "4.2.0";
|
version = "4.2.0";
|
||||||
|
format = "setuptools";
|
||||||
|
|
||||||
disabled = pythonOlder "3.7";
|
disabled = pythonOlder "3.7";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "CERT-Polska";
|
owner = "CERT-Polska";
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = "refs/tags/v${version}";
|
rev = "refs/tags/v${version}";
|
||||||
sha256 = "sha256-UgpblcZ/Jxl3U4256YIHzly7igNXwhTdFN4HOqZBVbM=";
|
hash = "sha256-UgpblcZ/Jxl3U4256YIHzly7igNXwhTdFN4HOqZBVbM=";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
|
@ -43,7 +45,9 @@ buildPythonPackage rec {
|
||||||
# Project has no tests. They will come with the next release
|
# Project has no tests. They will come with the next release
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
|
||||||
pythonImportsCheck = [ "malduck" ];
|
pythonImportsCheck = [
|
||||||
|
"malduck"
|
||||||
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Helper for malware analysis";
|
description = "Helper for malware analysis";
|
||||||
|
|
Loading…
Reference in a new issue