guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit 0ca05d65d1f8c5dca622e0762c88e8bd3f9337bc
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Sat May 30 08:16:03 2026 +0100
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
---
gnu/packages/python-web.scm | 23 +++++++++++------------
1 file changed, 11 insertions(+), 12 deletions(-)
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index 1c4fe7624b..1d1f56caec 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -5964,20 +5964,19 @@ cssutils not receiving updates as of 1.0.2.")
(define-public python-cssselect
(package
(name "python-cssselect")
- (version "1.2.0")
- (source (origin
- ;; The PyPI release does not contain tests.
- (method git-fetch)
- (uri (git-reference
- (url "https://github.com/scrapy/cssselect")
- (commit (string-append "v" version))))
- (file-name (git-file-name name version))
- (sha256
- (base32
- "1x4nrvb1p1byi1whmspik7lbh303akdlh762dayfxam3hycsh5kk"))))
+ (version "1.4.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/scrapy/cssselect")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "110l98x1mz1mxcal89xscsg28vg624sc0y6b5x1n2clwa19q5g4y"))))
(build-system pyproject-build-system)
(native-inputs
- (list python-lxml python-pytest python-setuptools python-wheel))
+ (list python-hatchling python-lxml python-pytest))
(home-page "https://github.com/scrapy/cssselect")
(synopsis "CSS3 selector parser and translator to XPath 1.0")
(description