guix_mirror_bot pushed a commit to branch python-team in repository guix. commit 178c2367b082d0d4048cff0cb1e1a7ebcc62fbe1 Author: Sharlatan Hellseher <sharlata...@gmail.com> AuthorDate: Sat Aug 9 12:33:33 2025 +0100
gnu: Add python-beautifulsoup4-bootstrap. * gnu/packages/python-xyz.scm (python-beautifulsoup4-bootstrap): New variable. Change-Id: I776b58a6290c9d7b20e27281dccfc9ad6d333a6e --- gnu/packages/python-xyz.scm | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index beed43d585..afa50127dc 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -15395,6 +15395,15 @@ dissecting a document and extracting what you need. It automatically converts incoming documents to Unicode and outgoing documents to UTF-8.") (license license:expat))) +(define-public python-beautifulsoup4-bootstrap + (hidden-package + (package/inherit python-beautifulsoup4 + (arguments + (list #:tests? #f)) + (native-inputs + (list python-hatchling)) + (propagated-inputs '())))) + (define-public python-soupsieve (package (name "python-soupsieve")