From f3412d78c5931f233d3280d02de2ee72ac5557bf Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Sun, 1 May 2022 02:48:06 -0400 Subject: [PATCH] gnu: Remove python2-beautifulsoup4. * gnu/packages/python-xyz.scm (python2-beautifulsoup4): Delete variable. --- gnu/packages/python-xyz.scm | 17 +---------------- 1 file changed, 1 insertion(+), 16 deletions(-) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 8197201aed..9fe692ef88 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -9400,22 +9400,7 @@ (define-public python-beautifulsoup4 searching, and modifying a parse tree, providing a toolkit for dissecting a document and extracting what you need. It automatically converts incoming documents to Unicode and outgoing documents to UTF-8.") - (license license:expat) - (properties `((python2-variant . ,(delay python2-beautifulsoup4)))))) - -(define-public python2-beautifulsoup4 - (let ((base (package-with-python2 - (strip-python2-variant python-beautifulsoup4)))) - (package/inherit base - (version "4.9.3") ;last version to support Python 2 - (source - (origin - (method url-fetch) - (uri (pypi-uri "beautifulsoup4" version)) - (sha256 - (base32 - "09gbd49mwz86k572r1231x2rdp82p42zlnw0bz9b9mfi58r9wwl4")))) - (arguments `(#:python ,python-2))))) + (license license:expat))) (define-public python-soupsieve (package