guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

13/15: gnu: python-soupsieve: Fix python2 variant.


From: guix-commits
Subject: 13/15: gnu: python-soupsieve: Fix python2 variant.
Date: Mon, 3 Jun 2019 16:32:29 -0400 (EDT)

mbakke pushed a commit to branch master
in repository guix.

commit d00b83fb8a49581f08dc5676322c5decdcc64dfd
Author: Marius Bakke <address@hidden>
Date:   Mon Jun 3 18:31:05 2019 +0200

    gnu: python-soupsieve: Fix python2 variant.
    
    * gnu/packages/python-xyz.scm (python-soupsieve)[properties]: New field.
    (python2-soupsieve): Inherit using STRIP-PYTHON2-VARIANT.
    [propagated-inputs]: Inherit from BASE.
---
 gnu/packages/python-xyz.scm | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 396010c..bd70670 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -5443,14 +5443,17 @@ 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).")
+    (properties `((python2-variant . ,(delay python2-soupsieve))))
     (license license:expat)))
 
 (define-public python2-soupsieve
-  (let ((base (package-with-python2 python-soupsieve)))
+  (let ((base (package-with-python2 (strip-python2-variant python-soupsieve))))
     (package
       (inherit base)
       (propagated-inputs
-       `(("python2-backports-functools-lru-cache" 
,python2-backports-functools-lru-cache))))))
+       `(("python2-backports-functools-lru-cache"
+          ,python2-backports-functools-lru-cache)
+         ,@(package-propagated-inputs base))))))
 
 (define-public python-netifaces
   (package



reply via email to

[Prev in Thread] Current Thread [Next in Thread]