python3.pkgs.pyimpfuzzy: init at 0.5
This commit is contained in:
parent
b042c2248e
commit
313681c8fc
|
@ -0,0 +1,37 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, ssdeep
|
||||
, pefile
|
||||
}:
|
||||
buildPythonPackage rec {
|
||||
pname = "pyimpfuzzy";
|
||||
version = "0.5";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "da9796df302db4b04a197128637f84988f1882f1e08fdd69bbf9fdc6cfbaf349";
|
||||
};
|
||||
|
||||
buildInputs = [
|
||||
ssdeep
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
pefile
|
||||
];
|
||||
|
||||
# no tests
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [
|
||||
"pyimpfuzzy"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "A Python module which calculates and compares the impfuzzy (import fuzzy hashing)";
|
||||
homepage = "https://github.com/JPCERTCC/impfuzzy";
|
||||
license = licenses.gpl2Only;
|
||||
maintainers = teams.determinatesystems.members;
|
||||
};
|
||||
}
|
|
@ -5954,6 +5954,10 @@ in {
|
|||
|
||||
PyICU = callPackage ../development/python-modules/pyicu { };
|
||||
|
||||
pyimpfuzzy = callPackage ../development/python-modules/pyimpfuzzy {
|
||||
inherit (pkgs) ssdeep;
|
||||
};
|
||||
|
||||
pyinotify = callPackage ../development/python-modules/pyinotify { };
|
||||
|
||||
pyinputevent = callPackage ../development/python-modules/pyinputevent { };
|
||||
|
|
Loading…
Reference in New Issue