summaryrefslogtreecommitdiff
path: root/gnu/packages/python-web.scm
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2026-05-30 08:16:03 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2026-08-08 23:02:03 +0100
commitd38f47df2af0bb285694f83df6e6f1a5c58c5daa (patch)
treebfdd282c8caa47e3865455ccc6cd381ad012f4f2 /gnu/packages/python-web.scm
parent6bd5b2128f4bc3e83cc502a0072774ceb225fb7d (diff)
gnu: python-cssselect: Update to 1.4.0.
* gnu/packages/python-web.scm (python-cssselect): Update to 1.4.0. [native-inputs]: Remove python-setuptools and python-wheel; add python-hatchling. Change-Id: I1fd7b5806203e5da83ae84322ba331d7bd83e4d8
Diffstat (limited to 'gnu/packages/python-web.scm')
-rw-r--r--gnu/packages/python-web.scm23
1 files changed, 11 insertions, 12 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index a08688c8798..878b04b7801 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -6018,20 +6018,19 @@ cssutils not receiving updates as of 1.0.2.")
6018(define-public python-cssselect 6018(define-public python-cssselect
6019 (package 6019 (package
6020 (name "python-cssselect") 6020 (name "python-cssselect")
6021 (version "1.2.0") 6021 (version "1.4.0")
6022 (source (origin 6022 (source
6023 ;; The PyPI release does not contain tests. 6023 (origin
6024 (method git-fetch) 6024 (method git-fetch)
6025 (uri (git-reference 6025 (uri (git-reference
6026 (url "https://github.com/scrapy/cssselect") 6026 (url "https://github.com/scrapy/cssselect")
6027 (commit (string-append "v" version)))) 6027 (commit (string-append "v" version))))
6028 (file-name (git-file-name name version)) 6028 (file-name (git-file-name name version))
6029 (sha256 6029 (sha256
6030 (base32 6030 (base32 "110l98x1mz1mxcal89xscsg28vg624sc0y6b5x1n2clwa19q5g4y"))))
6031 "1x4nrvb1p1byi1whmspik7lbh303akdlh762dayfxam3hycsh5kk"))))
6032 (build-system pyproject-build-system) 6031 (build-system pyproject-build-system)
6033 (native-inputs 6032 (native-inputs
6034 (list python-lxml python-pytest python-setuptools python-wheel)) 6033 (list python-hatchling python-lxml python-pytest))
6035 (home-page "https://github.com/scrapy/cssselect") 6034 (home-page "https://github.com/scrapy/cssselect")
6036 (synopsis "CSS3 selector parser and translator to XPath 1.0") 6035 (synopsis "CSS3 selector parser and translator to XPath 1.0")
6037 (description 6036 (description