guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit 082704baf66df55e7d75df065b027c63a6e83e6e
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Sun Jun 21 22:33:45 2026 +0100
gnu: python-webcolors: Update to 25.10.0.
* gnu/packages/python-web.scm (python-webcolors): Update to 25.10.0.
[source]: Switch to git-fetch.
[arguments]: Drop all.
---
gnu/packages/python-web.scm | 21 ++++++---------------
1 file changed, 6 insertions(+), 15 deletions(-)
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index 95b35830e4..6a0491bc7f 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -12851,25 +12851,16 @@ translate entities on HTML strings, among other
things.")
(define-public python-webcolors
(package
(name "python-webcolors")
- (version "24.11.1")
+ (version "25.10.0")
(source
(origin
- (method url-fetch)
- (uri (pypi-uri "webcolors" version))
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/ubernostrum/webcolors")
+ (commit version)))
(sha256
- (base32 "1xl0vn4xa03vjwx6fj19q9kgb94g65gvdf3p0ivsy0i2ydldgczc"))))
+ (base32 "1wknzir5252y30wcpwxb04ngmrdw1llzqmrpiajyhkm81x2lgrym"))))
(build-system pyproject-build-system)
- (arguments
- (list
- #:phases
- '(modify-phases %standard-phases
- (add-after 'unpack 'patch-pyproject
- (lambda _
- ;; XXX Our version of python-pdm-backend does not recognize
- ;; "dependency-groups", but is fine with the bogus
- ;; "tool.whatever".
- (substitute* "pyproject.toml"
- (("\\[dependency-groups\\]") "[tool.whatever]")))))))
(native-inputs
(list python-pdm-backend python-pytest))
(home-page "https://github.com/ubernostrum/webcolors")