[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#35446] [PATCH v2 11/24] gnu: Add python-soupsieve, python2-soupsiev
From: |
Brendan Tildesley |
Subject: |
[bug#35446] [PATCH v2 11/24] gnu: Add python-soupsieve, python2-soupsieve |
Date: |
Sat, 4 May 2019 02:42:19 +1000 |
* gnu/packages/python-xyz.scm (python-soupsieve, python2-soupsieve): New
variables.
---
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 31f3ea3688..42e8a60b3a 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -5559,6 +5559,39 @@ converts incoming documents to Unicode and outgoing
documents to UTF-8.")
(strip-python2-variant python-beautifulsoup4)))
(arguments `(#:python ,python-2))))
+(define-public python-soupsieve
+ (package
+ (name "python-soupsieve")
+ (version "1.9.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "soupsieve" version))
+ (sha256
+ (base32
+ "1jnzkiwmjl6yvqckc9mf689g87b6yz07sv868hap2aa5arggy3mj"))))
+ (build-system python-build-system)
+ (arguments `(#:tests? #f))
+ ;;XXX: 2 tests fail currently despite claming they were to be
+ ;;skipped. Also, beautifulsoup4 may depend on this in the future, so we
+ ;;don't want to create a circular dependency.
+ (home-page "https://github.com/facelessuser/soupsieve")
+ (synopsis "CSS selector library")
+ (description
+ "Soup Sieve is a CSS selector library designed to be used with Beautiful
+Soup 4. It aims to provide selecting, matching, and filtering using modern
+CSS selectors. Soup Sieve currently provides selectors from the CSS level 1
+specifications up through the latest CSS level 4 drafts and beyond (though
+some are not yet implemented).")
+ (license license:expat)))
+
+(define-public python2-soupsieve
+ (let ((base (package-with-python2 python-soupsieve)))
+ (package
+ (inherit base)
+ (propagated-inputs
+ `(("python2-backports-functools-lru-cache"
,python2-backports-functools-lru-cache))))))
+
(define-public python-netifaces
(package
(name "python-netifaces")
--
2.21.0
- [bug#35446] [PATCH v2 01/24] gnu: calibre: Update to 3.41.3., Brendan Tildesley, 2019/05/03
- [bug#35446] [PATCH v2 04/24] gnu: calibre: Add missing dependencies as indicated by tests., Brendan Tildesley, 2019/05/03
- [bug#35446] [PATCH v2 02/24] gnu: calibre: Use system mathjax., Brendan Tildesley, 2019/05/03
- [bug#35446] [PATCH v2 11/24] gnu: Add python-soupsieve, python2-soupsieve,
Brendan Tildesley <=
- [bug#35446] [PATCH v2 05/24] gnu: calibre: Patch out unrar test., Brendan Tildesley, 2019/05/03
- [bug#35446] [PATCH v2 09/24] gnu: python-regex, python2-regex: Update to 2019.04.14., Brendan Tildesley, 2019/05/03
- [bug#35446] [PATCH v2 07/24] gnu: Add python-html2text, python2-html2text., Brendan Tildesley, 2019/05/03
- [bug#35446] [PATCH v2 03/24] gnu: calibre: Build rapydscript., Brendan Tildesley, 2019/05/03
- [bug#35446] [PATCH v2 14/24] gnu: calibre: Disable Qt test., Brendan Tildesley, 2019/05/03
- [bug#35446] [PATCH v2 08/24] gnu: calibre: Add python2-html2text as an input., Brendan Tildesley, 2019/05/03
- [bug#35446] [PATCH v2 06/24] gnu: calibre: Move font unbundling to after check phase., Brendan Tildesley, 2019/05/03
- [bug#35446] [PATCH v2 17/24] gnu: calibre: Remove some comments., Brendan Tildesley, 2019/05/03