python310Packages.image-diff: init at 0.2.2
This commit is contained in:
@@ -0,0 +1,39 @@
|
||||
{ lib
|
||||
, python
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, pillow
|
||||
, click
|
||||
, click-default-group
|
||||
, pytestCheckHook
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "image-diff";
|
||||
version = "0.2.2";
|
||||
format = "setuptools";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "simonw";
|
||||
repo = "image-diff";
|
||||
rev = version;
|
||||
hash = "sha256-AQykJNvBgVjmPVTwJOX17eKWelqvZZieq/giid8GYAY=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
pillow
|
||||
click
|
||||
click-default-group
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "image_diff" ];
|
||||
|
||||
nativeCheckInputs = [ pytestCheckHook ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "CLI tool for comparing images";
|
||||
homepage = "https://github.com/simonw/image-diff";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ evils ];
|
||||
};
|
||||
}
|
||||
@@ -4865,6 +4865,8 @@ self: super: with self; {
|
||||
|
||||
imageio-ffmpeg = callPackage ../development/python-modules/imageio-ffmpeg { };
|
||||
|
||||
image-diff = callPackage ../development/python-modules/image-diff { };
|
||||
|
||||
image-go-nord = callPackage ../development/python-modules/image-go-nord { };
|
||||
|
||||
imagesize = callPackage ../development/python-modules/imagesize { };
|
||||
|
||||
Reference in New Issue
Block a user