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