gnu: Add python-colour

* gnu/packages/python-xyz.scm (python-colour): New variable.

Signed-off-by: Christopher Baines <mail@cbaines.net>
This commit is contained in:
Sebastian Schott 2020-03-07 16:11:41 +01:00 committed by Christopher Baines
parent 5164a92eaa
commit 2763f0de41
No known key found for this signature in database
GPG key ID: 5E28A33B0B84F577

View file

@ -171,6 +171,25 @@ (define-module (gnu packages python-xyz)
#:use-module (srfi srfi-1)
#:use-module (srfi srfi-26))
(define-public python-colour
(package
(name "python-colour")
(version "0.1.5")
(source (origin
(method url-fetch)
(uri (pypi-uri "colour" version))
(sha256
(base32
"1visbisfini5j14bdzgs95yssw6sm4pfzyq1n3lfvbyjxw7i485g"))))
(build-system python-build-system)
(native-inputs
`(("python-d2to1" ,python-d2to1)))
(home-page "https://github.com/vaab/colour")
(synopsis "Convert and manipulate various color representations")
(description "Pythonic way to manipulate color representations (HSL, RVB,
web, X11, ...).")
(license license:expat)))
(define-public python-d2to1
(package
(name "python-d2to1")