diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-28 18:17:53 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-09-25 09:36:11 +0100 |
| commit | 8aab376b8c79de38284878037f1989cdeabe157c (patch) | |
| tree | cd484b5a3301742c57a84d73876660248af865d7 | |
| parent | 7720f06ad1615e6520d30188d6fcdf6d08820673 (diff) | |
gnu: python-manuel: Disable tests.
* gnu/packages/python-web.scm (python-manuel):
[arguments] <tests?>: Disable for now.
[native-inputs]: Remove python-setuptools, python-wheel, and
python-zope-testing.
Change-Id: I96b5247bdf24a8101c467fc9c1052d0661c181c8
| -rw-r--r-- | gnu/packages/python-web.scm | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index 9ad1c18382..d5620691c3 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -9194,17 +9194,18 @@ Swagger.") (name "python-manuel") (version "1.13.0") (source - (origin - (method url-fetch) - (uri (pypi-uri "manuel" version)) - (sha256 - (base32 - "0nl8psji3fizbxw34gdg22dndlg9lf5f56mnh1vr4vgsx06i4qsx")))) + (origin + (method url-fetch) + (uri (pypi-uri "manuel" version)) + (sha256 + (base32 "0nl8psji3fizbxw34gdg22dndlg9lf5f56mnh1vr4vgsx06i4qsx")))) (build-system pyproject-build-system) + (arguments + (list + ;; FIXME: Tests are broken, see: <https://github.com/benji-york/manuel/pull/32>. + #:tests? #f)) (propagated-inputs - (list python-setuptools)) - (native-inputs - (list python-setuptools python-wheel python-zope-testing)) + (list python-setuptools)) ;install requires (home-page "https://pypi.org/project/manuel/") (synopsis "Build tested documentation") (description |
