guix-commits
[Top][All Lists]
Advanced

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

01/04: gnu: Add python-cssutils.


From: Eric Bavier
Subject: 01/04: gnu: Add python-cssutils.
Date: Tue, 14 Feb 2017 23:33:11 -0500 (EST)

bavier pushed a commit to branch master
in repository guix.

commit 4dcb135e7cf4d167cacbcee0d7b8a056a80dd2a1
Author: Eric Bavier <address@hidden>
Date:   Thu Feb 9 23:02:55 2017 -0600

    gnu: Add python-cssutils.
    
    * gnu/packages/python.scm (python-cssutils): New variable.
    (python2-cssutils)[native-inputs]: Remove unused python2-mock.
---
 gnu/packages/python.scm | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index 35ab30e..3ed5e2e 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -3,7 +3,7 @@
 ;;; Copyright © 2013, 2014, 2015, 2016 Ludovic Courtès <address@hidden>
 ;;; Copyright © 2013, 2014, 2015, 2016 Andreas Enge <address@hidden>
 ;;; Copyright © 2014, 2015 Mark H Weaver <address@hidden>
-;;; Copyright © 2014 Eric Bavier <address@hidden>
+;;; Copyright © 2014, 2017 Eric Bavier <address@hidden>
 ;;; Copyright © 2014, 2015 Federico Beffa <address@hidden>
 ;;; Copyright © 2015 Omar Radwan <address@hidden>
 ;;; Copyright © 2015 Pierre-Antoine Rault <address@hidden>
@@ -5374,9 +5374,9 @@ converts incoming documents to Unicode and outgoing 
documents to UTF-8.")
               (strip-python2-variant python-beautifulsoup4)))
     (arguments `(#:python ,python-2))))
 
-(define-public python2-cssutils
+(define-public python-cssutils
   (package
-    (name "python2-cssutils")
+    (name "python-cssutils")
     (version "1.0.1")
     (source
       (origin
@@ -5387,12 +5387,9 @@ converts incoming documents to Unicode and outgoing 
documents to UTF-8.")
           "0qwha9x1wml2qmipbcz03gndnlwhzrjdvw9i09si247a90l8p8fq"))))
     (build-system python-build-system)
     (native-inputs
-      `(("python2-mock" ,python2-mock) ; for the tests
-        ("unzip" ,unzip))) ; for unpacking the source
+      `(("unzip" ,unzip))) ; for unpacking the source
     (arguments
-     `(#:python ,python-2 ; Otherwise tests fail with a syntax error.
-       #:tests? #f ; The tests apparently download an external URL.
-       ))
+     `(#:tests? #f))                    ;tests require python-pbr < 1.7.0
     (home-page "http://cthedot.de/cssutils/";)
     (synopsis
       "CSS Cascading Style Sheets library for Python")
@@ -5402,6 +5399,9 @@ Cascading Style Sheets.  Currently it provides a DOM only 
and no rendering
 options.")
     (license license:lgpl3+)))
 
+(define-public python2-cssutils
+  (package-with-python2 python-cssutils))
+
 (define-public python-cssselect
   (package
     (name "python-cssselect")



reply via email to

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