diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-08-09 12:33:36 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-09-25 09:35:54 +0100 |
| commit | 7c4cb10ac7a788dca9d03429dad764ec13f14153 (patch) | |
| tree | 71e7e78a0024927d2cdd82217bad6eaeef271728 /gnu/packages/python-xyz.scm | |
| parent | 1afb94ae486bd8d2383d4bfa60aab1227afaa2e0 (diff) | |
gnu: python-soupsieve: Update to 2.7.
* gnu/packages/python-xyz.scm (python-soupsieve): Update to 2.7.
[build-system]: Use pyproject.
[arguments] <tests?>: Enable.
<phases>: Keep 'sanity-check.
[native-inputs]: Add python-beautifulsoup4-bootstrap,
python-hatchling, and python-pytest.
Change-Id: Iaf299e23c70832e1d90b7dcaec4a2ab0f058c5af
Diffstat (limited to 'gnu/packages/python-xyz.scm')
| -rw-r--r-- | gnu/packages/python-xyz.scm | 20 |
1 files changed, 7 insertions, 13 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 3368915dd2..2e9dbb2a6c 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -15369,24 +15369,18 @@ converts incoming documents to Unicode and outgoing documents to UTF-8.") (define-public python-soupsieve (package (name "python-soupsieve") - (version "2.2.1") + (version "2.7") (source (origin (method url-fetch) (uri (pypi-uri "soupsieve" version)) (sha256 - (base32 - "1k70gpn2d3vgdyxbdy536dgm4kchcraxz6lmgsfg3324iy2789q5")))) - (build-system python-build-system) - (arguments - ;;XXX: 2 tests fail currently despite claming they were to be - ;;skipped. Also, beautifulsoup4 may depend on this in the future, so we - ;;don't want to create a circular dependency. - (list #:tests? #f - #:phases - #~(modify-phases %standard-phases - ;; Circular dependency with python-beautifulsoup4. - (delete 'sanity-check)))) + (base32 "0shjmvk8yz2ljc16pmizg16bqhk1i8n5al27mlp6sa16d6djya5d")))) + (build-system pyproject-build-system) + (native-inputs + (list python-beautifulsoup4-bootstrap + python-hatchling + python-pytest)) (home-page "https://github.com/facelessuser/soupsieve") (synopsis "CSS selector library") (description |
