bcb2f287e1
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
42 lines
797 B
Nix
42 lines
797 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
pytestCheckHook,
|
|
numpy,
|
|
six,
|
|
scipy,
|
|
pillow,
|
|
pywavelets,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "imagehash";
|
|
version = "4.3.1";
|
|
format = "setuptools";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "JohannesBuchner";
|
|
repo = "imagehash";
|
|
rev = "v${version}";
|
|
hash = "sha256-Tsq10TZqnzNTuO4goKjdylN4Eqy7DNbHLjr5n3+nidM=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
numpy
|
|
six
|
|
scipy
|
|
pillow
|
|
pywavelets
|
|
];
|
|
|
|
nativeCheckInputs = [ pytestCheckHook ];
|
|
|
|
meta = with lib; {
|
|
description = "Python Perceptual Image Hashing Module";
|
|
mainProgram = "find_similar_images.py";
|
|
homepage = "https://github.com/JohannesBuchner/imagehash";
|
|
license = licenses.bsd2;
|
|
maintainers = with maintainers; [ e1mo ];
|
|
};
|
|
}
|