imagehash: init at 4.3.1

This commit is contained in:
Moritz 'e1mo' Fromm 2023-01-08 00:01:00 +01:00
parent d53d65d130
commit b920f2b53b
No known key found for this signature in database
GPG key ID: 1D5D79A439E787F1
2 changed files with 41 additions and 0 deletions

View file

@ -0,0 +1,39 @@
{ 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
];
checkInputs = [ pytestCheckHook ];
meta = with lib; {
description = "A Python Perceptual Image Hashing Module";
homepage = "https://github.com/JohannesBuchner/imagehash";
license = licenses.bsd2;
maintainers = with maintainers; [ e1mo ];
};
}

View file

@ -4491,6 +4491,8 @@ self: super: with self; {
imagecorruptions = callPackage ../development/python-modules/imagecorruptions { };
imagehash = callPackage ../development/python-modules/imagehash { };
imageio = callPackage ../development/python-modules/imageio { };
imageio-ffmpeg = callPackage ../development/python-modules/imageio-ffmpeg { };