guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/04: gnu: Add python-colorthief.


From: guix-commits
Subject: 01/04: gnu: Add python-colorthief.
Date: Sat, 6 Apr 2024 00:41:56 -0400 (EDT)

lilyp pushed a commit to branch master
in repository guix.

commit d92bb7c542aaf0282f08be78853b9ca7c5d7a159
Author: Liliana Marie Prikler <liliana.prikler@gmail.com>
AuthorDate: Sun Mar 31 16:48:08 2024 +0200

    gnu: Add python-colorthief.
    
    * gnu/packages/python-xyz.scm (python-colorthief): New variable.
    
    Reviewed-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
---
 gnu/packages/python-xyz.scm | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index cd10f304c8..f2ea90ad09 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -1078,6 +1078,25 @@ names for 256 color terminal setups.")
 as functions or string constants to form colored terminal output.")
     (license license:expat)))
 
+(define-public python-colorthief
+  (package
+    (name "python-colorthief")
+    (version "0.2.1")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "colorthief" version))
+       (sha256
+        (base32 "08bjsmmkihyksms2vgndslln02rvw56lkxz28d39qrnxbg4v1707"))))
+    (build-system pyproject-build-system)
+    (propagated-inputs (list python-pillow))
+    (home-page "https://github.com/fengsp/color-thief-py";)
+    (synopsis "Grab the color palette of an image")
+    (description
+     "This package provides methods to determine the dominant color
+of an image, as well as constructing a representative color palette.")
+    (license license:bsd-3)))
+
 (define-public python-construct-classes
   (package
     (name "python-construct-classes")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]