mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: Add python-pixelmatch.
* gnu/packages/python-xyz.scm (python-pixelmatch): New variable. Signed-off-by: Christopher Baines <mail@cbaines.net>
This commit is contained in:
parent
f9abf24f24
commit
722073b151
1 changed files with 20 additions and 0 deletions
|
@ -7699,6 +7699,26 @@ (define-public python-pillow-simd
|
||||||
(description "This package is a fork of Pillow which adds support for SIMD
|
(description "This package is a fork of Pillow which adds support for SIMD
|
||||||
parallelism.")))
|
parallelism.")))
|
||||||
|
|
||||||
|
(define-public python-pixelmatch
|
||||||
|
(package
|
||||||
|
(name "python-pixelmatch")
|
||||||
|
(version "0.3.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (pypi-uri "pixelmatch" version))
|
||||||
|
(sha256
|
||||||
|
(base32 "16b0cz136dcmj4dbr505igpql8dmqmr9vni5nbaa5kygjfjkdynh"))))
|
||||||
|
(build-system python-build-system)
|
||||||
|
(native-inputs (list python-pillow))
|
||||||
|
(home-page "https://github.com/whtsky/pixelmatch-py")
|
||||||
|
(synopsis "A pixel-level image comparison library")
|
||||||
|
(description "This package provides a pixel-level image comparison library
|
||||||
|
for Python, originally created to compare screenshots in tests. Its features
|
||||||
|
include accurate anti-aliased pixels detection and perceptual color difference
|
||||||
|
metrics.")
|
||||||
|
(license license:isc)))
|
||||||
|
|
||||||
(define-public python-imagecodecs
|
(define-public python-imagecodecs
|
||||||
(package
|
(package
|
||||||
(name "python-imagecodecs")
|
(name "python-imagecodecs")
|
||||||
|
|
Loading…
Reference in a new issue