aboutsummaryrefslogtreecommitdiff
path: root/gn/packages/python.scm
diff options
context:
space:
mode:
authorArun Isaac2021-11-08 10:19:46 +0530
committerArun Isaac2021-11-08 10:19:46 +0530
commit3cd7ce1866867e66bf34bf6b55047ffabff05414 (patch)
treef03aeb29cf35d1e5bf10d24887481a74c77b3f23 /gn/packages/python.scm
parent8b1e08fe8be42a72542c92ace3c29e7715cd1150 (diff)
downloadguix-bioinformatics-3cd7ce1866867e66bf34bf6b55047ffabff05414.tar.gz
gn: Remove upstreamed packages.
* gn/packages/python.scm (python-webcolors): Delete variable. * gn/packages/messaging.scm: Delete file.
Diffstat (limited to 'gn/packages/python.scm')
-rw-r--r--gn/packages/python.scm39
1 files changed, 0 insertions, 39 deletions
diff --git a/gn/packages/python.scm b/gn/packages/python.scm
index f09e1bb..d14518d 100644
--- a/gn/packages/python.scm
+++ b/gn/packages/python.scm
@@ -1861,42 +1861,3 @@ window to get to RStudio for example.")
"This extension adds a toolbar overlay to Flask applications containing
useful information for debugging.")
(license license:bsd-3)))
-
-(define-public python-webcolors
- (package
- (name "python-webcolors")
- (version "1.11.1")
- (source
- (origin
- (method url-fetch)
- (uri (pypi-uri "webcolors" version))
- (sha256
- (base32 "1rkda75h2p65zx6r84c9mjavn4xpviqvqrklvdvcklapd5in1wvn"))))
- (build-system python-build-system)
- (arguments
- `(#:phases
- (modify-phases %standard-phases
- (replace 'check
- (lambda* (#:key tests? inputs outputs #:allow-other-keys)
- (when tests?
- (add-installed-pythonpath inputs outputs)
- (invoke "pytest")))))))
- (native-inputs
- `(("python-pytest" ,python-pytest)))
- (home-page "https://github.com/ubernostrum/webcolors")
- (synopsis "HTML/CSS color definitions library")
- (description "@code{python-webcolors} is a module for working with
-HTML/CSS color definitions. Normalizing and converting between the following
-formats is supported.
-
-@itemize
-@item Specification-defined color names
-@item Six-digit hexadecimal
-@item Three-digit hexadecimal
-@item Integer rgb() triplet
-@item Percentage rgb() triplet
-@end itemize
-
-Only the RGB colorspace is supported. Conversion to/from the HSL colorspace
-can be handled by the @code{colorsys} module in the Python standard library.")
- (license license:bsd-3)))