From 4dcb135e7cf4d167cacbcee0d7b8a056a80dd2a1 Mon Sep 17 00:00:00 2001 From: Eric Bavier Date: Thu, 9 Feb 2017 23:02:55 -0600 Subject: 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 35ab30ecc5..3ed5e2eead 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -3,7 +3,7 @@ ;;; Copyright © 2013, 2014, 2015, 2016 Ludovic Courtès ;;; Copyright © 2013, 2014, 2015, 2016 Andreas Enge ;;; Copyright © 2014, 2015 Mark H Weaver -;;; Copyright © 2014 Eric Bavier +;;; Copyright © 2014, 2017 Eric Bavier ;;; Copyright © 2014, 2015 Federico Beffa ;;; Copyright © 2015 Omar Radwan ;;; Copyright © 2015 Pierre-Antoine Rault @@ -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") -- cgit v1.2.3