Merge pull request #170348 from r-ryantm/auto-update/python3.10-malduck

python310Packages.malduck: 4.1.0 -> 4.2.0
main
Fabian Affolter 2 years ago committed by GitHub
commit e78b11b18e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 12
      pkgs/development/python-modules/malduck/default.nix

@ -14,14 +14,16 @@
buildPythonPackage rec {
pname = "malduck";
version = "4.1.0";
version = "4.2.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "CERT-Polska";
repo = pname;
rev = "v${version}";
sha256 = "04d8bhzax9ynbl83hif9i8gcs29zrvcay2r6n7mcxiixlxcqciak";
rev = "refs/tags/v${version}";
hash = "sha256-UgpblcZ/Jxl3U4256YIHzly7igNXwhTdFN4HOqZBVbM=";
};
propagatedBuildInputs = [
@ -43,7 +45,9 @@ buildPythonPackage rec {
# Project has no tests. They will come with the next release
doCheck = false;
pythonImportsCheck = [ "malduck" ];
pythonImportsCheck = [
"malduck"
];
meta = with lib; {
description = "Helper for malware analysis";

Loading…
Cancel
Save