diff options
author | 宋文武 <iyzsong@member.fsf.org> | 2025-01-14 13:38:28 +0800 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2025-01-20 21:37:50 +0100 |
commit | 001f48fd33028393eb2a3b2eaf4ef472e79cc195 (patch) | |
tree | 87cca85fd7cbac0cf4b0b7a86ed1442973be052d /gnu/packages/python-web.scm | |
parent | 8f0ca5d940419e66d1cb81e60b87b62ebe1435e4 (diff) |
gnu: Remove python-tinycss.
Last updated 8 years ago, superseded by python-tinycss2.
* gnu/packages/python-web.scm (python-tinycss): Remove variable.
Change-Id: I0ce8abdffe40340b798c697cd501d4a6a3443078
Diffstat (limited to 'gnu/packages/python-web.scm')
-rw-r--r-- | gnu/packages/python-web.scm | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index 492e60fbc7..9c027d7b6b 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -6657,41 +6657,6 @@ library to create slugs from unicode strings while keeping it DRY.") the non-map-specific features. It can be used to generate HTML + JS.") (license license:expat))) -(define-public python-tinycss - (package - (name "python-tinycss") - (version "0.4") - (source - (origin - (method url-fetch) - (uri (pypi-uri "tinycss" version)) - (sha256 - (base32 "0vkifr595h28ymkjhrswwf0bm23lhznh5f44xyp7x7jy1ssnyc0j")))) - (build-system pyproject-build-system) - (arguments - (list #:test-flags - '(list "-k" "not test_speedups"))) - (native-inputs - (list python-pytest-cov - python-pytest-flake8 - python-pytest-isort - python-pytest-runner - python-setuptools - python-wheel)) - (home-page "https://tinycss.readthedocs.io/") - (synopsis "Complete yet simple CSS parser for Python") - (description - "@code{tinycss} is a complete yet simple CSS parser for Python. It -supports the full syntax and error handling for CSS 2.1 as well as some CSS 3 -modules: - -@itemize -@item CSS Color 3 -@item CSS Fonts 3 -@item CSS Paged Media 3 -@end itemize") - (license license:bsd-3))) - (define-public python-tinycss2 (package (name "python-tinycss2") |