fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
33 lines
680 B
Nix
33 lines
680 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
ssdeep,
|
|
pefile,
|
|
}:
|
|
buildPythonPackage rec {
|
|
pname = "pyimpfuzzy";
|
|
version = "0.5";
|
|
format = "setuptools";
|
|
|
|
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 = [ ];
|
|
};
|
|
}
|