[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
05/19: gnu: Add python-beautifulsoup4.
From: |
Christopher Allan Webber |
Subject: |
05/19: gnu: Add python-beautifulsoup4. |
Date: |
Mon, 22 Feb 2016 03:01:47 +0000 |
cwebber pushed a commit to branch wip-mediagoblin
in repository guix.
commit b32a1e47a9d473001a332ad07122947c55558be0
Author: Christopher Allan Webber <address@hidden>
Date: Sat Feb 13 18:35:57 2016 -0800
gnu: Add python-beautifulsoup4.
* gnu/packages/python.scm (python-beautifulsoup4, python2-beautifulsoup4):
New variables.
---
gnu/packages/python.scm | 33 +++++++++++++++++++++++++++++++++
1 files changed, 33 insertions(+), 0 deletions(-)
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index 8742409..b099fcf 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -4568,6 +4568,39 @@ libxml2 and libxslt.")
(define-public python2-lxml
(package-with-python2 python-lxml))
+;; beautifulsoup4 has a totally different namespace than 3.x,
+;; and pypi seems to put it under its own name, so I guess we should too
+(define-public python-beautifulsoup4
+ (package
+ (name "python-beautifulsoup4")
+ (version "4.4.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "beautifulsoup4" version))
+ (sha256
+ (base32
+ "1d36lc4pfkvl74fmzdib2nqnvknm0jddgf2n9yd7im150qyh3m47"))))
+ (build-system python-build-system)
+ (home-page
+ "http://www.crummy.com/software/BeautifulSoup/bs4/")
+ (synopsis
+ "Python screen-scraping library")
+ (description
+ "Beautiful Soup is a Python library designed for rapidly setting up
+screen-scraping projects. It offers Pythonic idioms for navigating,
+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
+ (package
+ (inherit (package-with-python2
+ (strip-python2-variant python-beautifulsoup4)))
+ (native-inputs `(("python2-setuptools" ,python2-setuptools)))))
+
(define-public python2-pil
(package
(name "python2-pil")
- branch wip-mediagoblin created (now 4633def), Christopher Allan Webber, 2016/02/21
- 02/19: gnu: Add python2-apipkg., Christopher Allan Webber, 2016/02/21
- 01/19: gnu: Add python-alembic., Christopher Allan Webber, 2016/02/21
- 04/19: gnu: Add python-pytest-xdist., Christopher Allan Webber, 2016/02/21
- 03/19: gnu: Add python2-execnet., Christopher Allan Webber, 2016/02/21
- 06/19: gnu: Add python-waitress., Christopher Allan Webber, 2016/02/21
- 07/19: gnu: Add python-wsgiproxy2., Christopher Allan Webber, 2016/02/21
- 11/19: gnu: Add python-anyjson., Christopher Allan Webber, 2016/02/21
- 12/19: gnu: Add python-amqp., Christopher Allan Webber, 2016/02/21
- 10/19: gnu: Add python-webtest., Christopher Allan Webber, 2016/02/21
- 05/19: gnu: Add python-beautifulsoup4.,
Christopher Allan Webber <=
- 17/19: gnu: Add python-editor., Christopher Allan Webber, 2016/02/21
- 19/19: gnu: python-apipkg: Remove unzip dependency., Christopher Allan Webber, 2016/02/21
- 09/19: gnu: Add python-pyquery., Christopher Allan Webber, 2016/02/21
- 13/19: gnu: Add python-kombu., Christopher Allan Webber, 2016/02/21
- 15/19: gnu: Add python-celery., Christopher Allan Webber, 2016/02/21
- 16/19: gnu: Add python-translitcodec., Christopher Allan Webber, 2016/02/21
- 18/19: gnu: Add mediagoblin., Christopher Allan Webber, 2016/02/21
- 08/19: gnu: Add python-pastedeploy., Christopher Allan Webber, 2016/02/21
- 14/19: gnu: Add python-billiard., Christopher Allan Webber, 2016/02/21