a0cb138ada
GitOrigin-RevId: a100acd7bbf105915b0004427802286c37738fef
39 lines
719 B
Nix
39 lines
719 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, pytestCheckHook
|
|
, numpy
|
|
, six
|
|
, scipy
|
|
, pillow
|
|
, pywavelets
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "imagehash";
|
|
version = "4.3.1";
|
|
|
|
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 = "A Python Perceptual Image Hashing Module";
|
|
homepage = "https://github.com/JohannesBuchner/imagehash";
|
|
license = licenses.bsd2;
|
|
maintainers = with maintainers; [ e1mo ];
|
|
};
|
|
}
|