summaryrefslogtreecommitdiff
path: root/gnu/packages/python-web.scm
diff options
context:
space:
mode:
author宋文武 <iyzsong@member.fsf.org>2025-01-15 10:35:41 +0800
committerRicardo Wurmus <rekado@elephly.net>2025-01-20 21:37:57 +0100
commit7d4c92e1ead9aa6dccd24d05764c0b2d40524e53 (patch)
tree17e889025c2d455221da30195a2f04a079019671 /gnu/packages/python-web.scm
parent595c139ef4ea1d2e525e39c51ab7843d35c2e230 (diff)
gnu: python-cssutils: Update to 2.11.1.
* gnu/packages/python-web.scm (python-cssutils): Update to 2.11.1. [propagated-inputs]: Add python-more-itertools. [inputs]: Add python-cssselect and python-lxml. Change-Id: I4832cd718fade9986df6bd7e82fe3e886e452a19
Diffstat (limited to 'gnu/packages/python-web.scm')
-rw-r--r--gnu/packages/python-web.scm17
1 files changed, 11 insertions, 6 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index 7785c798095..3aa1f797c21 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -2885,14 +2885,14 @@ for clients and servers.")
2885(define-public python-cssutils 2885(define-public python-cssutils
2886 (package 2886 (package
2887 (name "python-cssutils") 2887 (name "python-cssutils")
2888 (version "2.6.0") 2888 (version "2.11.1")
2889 (source 2889 (source
2890 (origin 2890 (origin
2891 (method url-fetch) 2891 (method url-fetch)
2892 (uri (pypi-uri "cssutils" version)) 2892 (uri (pypi-uri "cssutils" version))
2893 (sha256 2893 (sha256
2894 (base32 2894 (base32
2895 "13l1y0xr3fgbl95w3pinb5av5dqk2ip39pih6vgrz47c3hyd5p7p")))) 2895 "1qpq7xvzqp4cfcb8837rnd30x4hws3rkp33qpvmnxbxn2djsfqq5"))))
2896 (build-system pyproject-build-system) 2896 (build-system pyproject-build-system)
2897 (arguments 2897 (arguments
2898 (list 2898 (list
@@ -2901,12 +2901,17 @@ for clients and servers.")
2901 (replace 'check 2901 (replace 'check
2902 (lambda _ 2902 (lambda _
2903 (invoke "pytest" "-vv" "-k" 2903 (invoke "pytest" "-vv" "-k"
2904 ;; disable tests requiring network 2904 (string-append "not encutils "
2905 (string-append "not test_parseUrl "
2906 "and not encutils "
2907 "and not website.logging"))))))) 2905 "and not website.logging")))))))
2908 (native-inputs 2906 (native-inputs
2909 (list python-pytest python-jaraco-test python-setuptools python-wheel)) 2907 (list python-cssselect
2908 python-jaraco-test
2909 python-lxml
2910 python-pytest
2911 python-setuptools
2912 python-wheel))
2913 (propagated-inputs
2914 (list python-more-itertools))
2910 (home-page "https://github.com/jaraco/cssutils") 2915 (home-page "https://github.com/jaraco/cssutils")
2911 (synopsis 2916 (synopsis
2912 "CSS Cascading Style Sheets library for Python") 2917 "CSS Cascading Style Sheets library for Python")