summaryrefslogtreecommitdiff
path: root/gnu/packages/python-web.scm
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2026-06-21 22:33:45 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2026-08-08 23:02:15 +0100
commitb7749605cca48d1458295c9b547ab4d0f5d3f676 (patch)
treebf0a3b8c6f271d1e291821a192cd638338ca84db /gnu/packages/python-web.scm
parentebd837c151041892064d4077c56e43469b617b2c (diff)
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.
Diffstat (limited to 'gnu/packages/python-web.scm')
-rw-r--r--gnu/packages/python-web.scm21
1 files changed, 6 insertions, 15 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index f6544bdbe88..9063e2c85e1 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -13176,25 +13176,16 @@ translate entities on HTML strings, among other things.")
13176(define-public python-webcolors 13176(define-public python-webcolors
13177 (package 13177 (package
13178 (name "python-webcolors") 13178 (name "python-webcolors")
13179 (version "24.11.1") 13179 (version "25.10.0")
13180 (source 13180 (source
13181 (origin 13181 (origin
13182 (method url-fetch) 13182 (method git-fetch)
13183 (uri (pypi-uri "webcolors" version)) 13183 (uri (git-reference
13184 (url "https://github.com/ubernostrum/webcolors")
13185 (commit version)))
13184 (sha256 13186 (sha256
13185 (base32 "1xl0vn4xa03vjwx6fj19q9kgb94g65gvdf3p0ivsy0i2ydldgczc")))) 13187 (base32 "1wknzir5252y30wcpwxb04ngmrdw1llzqmrpiajyhkm81x2lgrym"))))
13186 (build-system pyproject-build-system) 13188 (build-system pyproject-build-system)
13187 (arguments
13188 (list
13189 #:phases
13190 '(modify-phases %standard-phases
13191 (add-after 'unpack 'patch-pyproject
13192 (lambda _
13193 ;; XXX Our version of python-pdm-backend does not recognize
13194 ;; "dependency-groups", but is fine with the bogus
13195 ;; "tool.whatever".
13196 (substitute* "pyproject.toml"
13197 (("\\[dependency-groups\\]") "[tool.whatever]")))))))
13198 (native-inputs 13189 (native-inputs
13199 (list python-pdm-backend python-pytest)) 13190 (list python-pdm-backend python-pytest))
13200 (home-page "https://github.com/ubernostrum/webcolors") 13191 (home-page "https://github.com/ubernostrum/webcolors")