1{ 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5}: 6 7buildPythonPackage rec { 8 pname = "ppdeep"; 9 version = "20200505"; 10 format = "setuptools"; 11 12 src = fetchPypi { 13 inherit pname version; 14 sha256 = "1zx1h0ff0wjjkgd0dzjv31i6ag09jw2p9vcssc1iplp60awlpixc"; 15 }; 16 17 # Project has no tests 18 doCheck = false; 19 pythonImportsCheck = [ "ppdeep" ]; 20 21 meta = with lib; { 22 description = "Python library for computing fuzzy hashes (ssdeep)"; 23 homepage = "https://github.com/elceef/ppdeep"; 24 license = with licenses; [ asl20 ]; 25 maintainers = with maintainers; [ fab ]; 26 }; 27}