nixpkgs/pkgs/development/python-modules/ppdeep/default.nix
2026-02-26 19:39:23 +00:00

31 lines
635 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
}:
buildPythonPackage (finalAttrs: {
pname = "ppdeep";
version = "20260221";
pyproject = true;
src = fetchPypi {
inherit (finalAttrs) pname version;
hash = "sha256-i+H0Fkt60vfEClGmZNMXZwHkCy+cG5bRju/68G3+/5Q=";
};
build-system = [ setuptools ];
# Project has no tests
doCheck = false;
pythonImportsCheck = [ "ppdeep" ];
meta = {
description = "Python library for computing fuzzy hashes (ssdeep)";
homepage = "https://github.com/elceef/ppdeep";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ fab ];
};
})