mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-03-15 00:46:31 +01:00
31 lines
635 B
Nix
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 ];
|
|
};
|
|
})
|