diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-11-17 13:09:30 +0000 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-12-13 20:23:25 +0000 |
commit | 30c420d552714a9c18f9bad4d7e8d2996c39b8e8 (patch) | |
tree | 02b0108f1789a604dcdeeb4676ff537a49c64a3d | |
parent | ca15f2c3affbe2a798752cd0914dc399c5f1f9fc (diff) | |
download | guix-30c420d552714a9c18f9bad4d7e8d2996c39b8e8.tar.gz guix-30c420d552714a9c18f9bad4d7e8d2996c39b8e8.zip |
gnu: python-beautifulsoup4: Update to 4.12.3.
* gnu/packages/python-xyz.scm (python-beautifulsoup4): Update to 4.12.3.
[build-system]: Swap to pyproject-build-system.
[arguments]<phases>: Use default 'check phase.
[native-inputs]: Add python-hatchling.
Change-Id: I91e885eb4bd2414554408acbc6fb57de936625b3
-rw-r--r-- | gnu/packages/python-xyz.scm | 15 |
1 files changed, 5 insertions, 10 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index f976704382..db88bd1bfc 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -13740,23 +13740,18 @@ the GObject Introspection bindings to libnotify for non-GTK applications.") (define-public python-beautifulsoup4 (package (name "python-beautifulsoup4") - (version "4.11.1") + (version "4.12.3") (source (origin (method url-fetch) (uri (pypi-uri "beautifulsoup4" version)) (sha256 (base32 - "14v68cpfzckfz63n9hnbsm271jvzvxscyijz83mhha7gcmdsb6md")))) - (build-system python-build-system) - (arguments - '(#:phases (modify-phases %standard-phases - (replace 'check - (lambda* (#:key tests? #:allow-other-keys) - (when tests? - (invoke "pytest" "-vv"))))))) + "0l8hg3vz9q5fx7gav8sj5zr90d5k7xpc91c1fhhhs1ywis9d3qvl")))) + (build-system pyproject-build-system) (native-inputs - (list python-pytest)) + (list python-hatchling + python-pytest)) (propagated-inputs (list python-soupsieve python-html5lib python-lxml)) (home-page |