GNU bug report logs -
#55474
[PATCH 01/18] gnu: python-django-taggit: Update to 2.1.0.
Previous Next
Full log
Message #82 received at 55474 <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/python-xyz.scm (python-beautifulsoup4-4.8): New variable.
---
gnu/packages/python-xyz.scm | 33 +++++++++++++++++++++++++++++++++
1 file changed, 33 insertions(+)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index c3b1da69ac..bb8552f248 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -9390,6 +9390,39 @@ (define-public python-beautifulsoup4
converts incoming documents to Unicode and outgoing documents to UTF-8.")
(license license:expat)))
+(define-public python-beautifulsoup4-4.8
+ (package
+ (inherit python-beautifulsoup4)
+ (name "python-beautifulsoup4")
+ (version "4.8.2")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "https://www.crummy.com/software/BeautifulSoup/bs4/download/"
+ "4.8/beautifulsoup4-" version ".tar.gz"))
+ (sha256
+ (base32 "0aj6ll0zpmm32g3919xxclwincacdr6dymkscmvhha8wn1g85z85"))))
+ (arguments
+ `(#:tests? #f
+ #:phases
+ (modify-phases %standard-phases
+ ;; The Python 2 source is the definitive source of beautifulsoup4. We
+ ;; must use this conversion script when building with Python 3. The
+ ;; conversion script also runs the tests.
+ ;; For more information, see the file 'convert-py3k' in the source
+ ;; distribution.
+ (add-before 'build 'convert-py3k
+ (lambda _
+ (substitute* "convert-py3k"
+ (("\\(cd py3k && python3 -m unittest discover -s bs4\\)") ""))
+ (invoke "./convert-py3k")
+ (delete-file-recursively "bs4")
+ (mkdir-p "bs4")
+ (copy-recursively "py3k/bs4" "bs4")
+ (substitute* "setup.py"
+ (("use_2to3 = True,") "")))))))))
+
(define-public python-soupsieve
(package
(name "python-soupsieve")
--
2.37.1
This bug report was last modified 1 year and 316 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.