ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / pyimpfuzzy / default.nix
blob43e1a1a2b82fa89ed6b54551b2a5949c89883d60
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , ssdeep
5 , pefile
6 }:
7 buildPythonPackage rec {
8   pname = "pyimpfuzzy";
9   version = "0.5";
11   src = fetchPypi {
12     inherit pname version;
13     sha256 = "da9796df302db4b04a197128637f84988f1882f1e08fdd69bbf9fdc6cfbaf349";
14   };
16   buildInputs = [
17     ssdeep
18   ];
20   propagatedBuildInputs = [
21     pefile
22   ];
24   # no tests
25   doCheck = false;
27   pythonImportsCheck = [
28     "pyimpfuzzy"
29   ];
31   meta = with lib; {
32     description = "A Python module which calculates and compares the impfuzzy (import fuzzy hashing)";
33     homepage = "https://github.com/JPCERTCC/impfuzzy";
34     license = licenses.gpl2Only;
35     maintainers = teams.determinatesystems.members;
36   };