32 lines
614 B
Nix
32 lines
614 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
setuptools,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "ppdeep";
|
|
version = "20250625";
|
|
pyproject = true;
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-t9pQ5U7ZvXkyY4K28vUfNxgW8ElaUjPe4jqUafh6Kng=";
|
|
};
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
# Project has no tests
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "ppdeep" ];
|
|
|
|
meta = with lib; {
|
|
description = "Python library for computing fuzzy hashes (ssdeep)";
|
|
homepage = "https://github.com/elceef/ppdeep";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|