python3Packages.pixelmatch: init at 0.2.2

This commit is contained in:
Milan Pässler 2021-02-04 21:54:15 +01:00
parent df18d77f1e
commit 84a1c29c5c
No known key found for this signature in database
GPG key ID: A6DC6A7CB0B97859
2 changed files with 40 additions and 0 deletions

View file

@ -0,0 +1,38 @@
{ lib, buildPythonPackage, fetchgit, poetry-core, pytestCheckHook, pytest-benchmark, pytest-mypy, pillow }:
buildPythonPackage rec {
pname = "pixelmatch";
version = "0.2.2";
format = "pyproject";
# test fixtures are stored in LFS
src = fetchgit {
url = "https://github.com/whtsky/pixelmatch-py";
rev = "v${version}";
sha256 = "1dsix507dxqik9wvgzscvf2pifbg7gx74krrsalqbfcmm7d1i7xl";
fetchLFS = true;
};
nativeBuildInputs = [
poetry-core
];
checkInputs = [
pytestCheckHook
pytest-benchmark
pytest-mypy
pillow
];
pytestFlagsArray = [
"--mypy"
"--benchmark-disable"
];
meta = with lib; {
description = "A pixel-level image comparison library.";
homepage = "https://github.com/whtsky/pixelmatch-py";
license = licenses.isc;
maintainers = with maintainers; [ petabyteboy ];
};
}

View file

@ -4880,6 +4880,8 @@ in {
inherit (pkgs.libsForQt5) soqt;
};
pixelmatch = callPackage ../development/python-modules/pixelmatch { };
pkgconfig = callPackage ../development/python-modules/pkgconfig { inherit (pkgs) pkg-config; };
pkginfo = callPackage ../development/python-modules/pkginfo { };