diff options
author | Eric Bavier <bavier@member.fsf.org> | 2017-02-09 23:02:55 -0600 |
---|---|---|
committer | Eric Bavier <bavier@member.fsf.org> | 2017-02-14 21:14:02 -0600 |
commit | 4dcb135e7cf4d167cacbcee0d7b8a056a80dd2a1 (patch) | |
tree | 5770a6a4b63c49eca793acd96d62a7de572ebc86 /gnu/packages/python.scm | |
parent | 20de37ef4d91f6ed547b040fa606b01c92f9e92f (diff) | |
download | guix-4dcb135e7cf4d167cacbcee0d7b8a056a80dd2a1.tar.gz |
gnu: Add python-cssutils.
* gnu/packages/python.scm (python-cssutils): New variable. (python2-cssutils)[native-inputs]: Remove unused python2-mock.
Diffstat (limited to 'gnu/packages/python.scm')
-rw-r--r-- | gnu/packages/python.scm | 16 |
1 files 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 <ludo@gnu.org> ;;; Copyright © 2013, 2014, 2015, 2016 Andreas Enge <andreas@enge.fr> ;;; Copyright © 2014, 2015 Mark H Weaver <mhw@netris.org> -;;; Copyright © 2014 Eric Bavier <bavier@member.fsf.org> +;;; Copyright © 2014, 2017 Eric Bavier <bavier@member.fsf.org> ;;; Copyright © 2014, 2015 Federico Beffa <beffa@fbengineering.ch> ;;; Copyright © 2015 Omar Radwan <toxemicsquire4@gmail.com> ;;; Copyright © 2015 Pierre-Antoine Rault <par@rigelk.eu> @@ -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") |