mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-20 12:43:52 +00:00
02dab4ab5c
Long term we should move everything over to `pyproject = true`, but in the mean time we can work towards deprecating the implicit `format` paremeter. cc https://github.com/NixOS/nixpkgs/issues/253154 cc @mweinelt @figsoda
41 lines
744 B
Nix
41 lines
744 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 = "A Python Perceptual Image Hashing Module";
|
|
homepage = "https://github.com/JohannesBuchner/imagehash";
|
|
license = licenses.bsd2;
|
|
maintainers = with maintainers; [ e1mo ];
|
|
};
|
|
}
|