summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-09-21 20:00:50 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-09-21 20:01:25 +0100
commit46a6cc0af588504272a32b6dfaae1dd2c0d8aa0b (patch)
tree002b1054df52ee991971c0f308c89fb00faf392e
parent25a9c8a6b089f87fd7071a1a70cdb9da65cc898d (diff)
gnu: python-pyjsparser: Disable tests.
* gnu/packages/python-web.scm (python-pyjsparser)[arguments] <tests?>: No tests in PyPI. [native-inputs]: Remove python-wheel. Change-Id: I354c8dacd7e05f4ab4d760a53ab1c327c4521ee0
-rw-r--r--gnu/packages/python-web.scm9
1 files changed, 8 insertions, 1 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index a4933931eb..7f4f175c8e 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -9529,6 +9529,11 @@ using a pure Python implementation.")
(license license:bsd-3)))
(define-public python-pyjsparser
+ ;; XXX: This project is potentially abandonware, consider to remove in next
+ ;; refresh cycle, see:
+ ;; <https://github.com/PiotrDabkowski/pyjsparser/issues/28>,
+ ;; <https://github.com/PiotrDabkowski/pyjsparser/issues/39>, and
+ ;; <https://github.com/PiotrDabkowski/pyjsparser/issues/40>.
(package
(name "python-pyjsparser")
(version "2.7.1")
@@ -9539,7 +9544,9 @@ using a pure Python implementation.")
(sha256
(base32 "0ycmf9fsvwliqmm1n6sfz7x71y7i2kbfgn39d8lsbiccfxmxlq5y"))))
(build-system pyproject-build-system)
- (native-inputs (list python-setuptools python-wheel))
+ (arguments
+ '(#:tests? #f)) ;no tests in PyPI
+ (native-inputs (list python-setuptools))
(home-page "https://github.com/PiotrDabkowski/pyjsparser")
(synopsis "Fast JavaScript parser")
(description