guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 540be0149f82478fb1ade977ec1d84108f86b0b5
Author: Nicolas Graves <[email protected]>
AuthorDate: Wed Aug 13 20:19:05 2025 +0200
gnu: python-pyjsparser: Switch to pyproject.
* gnu/packages/python-web.scm (python-pyjsparser):
[build-system]: Switch to pyproject-build-system.
[native-inputs]: Add python-setuptools, python-wheel.
[description]: Improve style.
Change-Id: I636cf05e270055ed57909fed05e6e493ee294eb2
Signed-off-by: Sharlatan Hellseher <[email protected]>
---
gnu/packages/python-web.scm | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index c4f56d7d7c..94dbad6abb 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -9320,11 +9320,12 @@ using a pure Python implementation.")
(uri (pypi-uri "pyjsparser" version))
(sha256
(base32 "0ycmf9fsvwliqmm1n6sfz7x71y7i2kbfgn39d8lsbiccfxmxlq5y"))))
- (build-system python-build-system)
+ (build-system pyproject-build-system)
+ (native-inputs (list python-setuptools python-wheel))
(home-page "https://github.com/PiotrDabkowski/pyjsparser")
(synopsis "Fast JavaScript parser")
- (description "This package provides a fast JavaScript parser (based on
-esprima.js)")
+ (description
+ "This package provides a fast JavaScript parser (based on esprima.js)")
(license license:expat)))
(define-public python-js2py