about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/imagehash/default.nix
blob: e2e20b4f6c276089b4e99b7040e7fc9fc50f4a49 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{ 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 = "A Python Perceptual Image Hashing Module";
    homepage = "https://github.com/JohannesBuchner/imagehash";
    license = licenses.bsd2;
    maintainers = with maintainers; [ e1mo ];
  };
}