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