diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2021-11-30 20:48:34 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2021-11-30 20:48:34 +0100 |
commit | 1a139682107582e663adf38ae217fc0029b10888 (patch) | |
tree | aada1b51d961d1ee724c6271d1f3a6b38dd2db71 | |
parent | e35cfeb25336d9e7a4dcd5ddf8f2345ce195067b (diff) |
gnu: Add python-js2py.
* gnu/packages/python-web.scm (python-js2py): New variable.
-rw-r--r-- | gnu/packages/python-web.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index 9939a1b238..fcc2ed6752 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -5960,6 +5960,29 @@ using a pure Python implementation.") esprima.js)") (license license:expat))) +(define-public python-js2py + (package + (name "python-js2py") + (version "0.71") + (source + (origin + (method url-fetch) + (uri (pypi-uri "Js2Py" version)) + (sha256 + (base32 "1kkzkys6dfcbdv51vqxr9cmak350ab4mmykb8dysx60lvl4i06x4")))) + (build-system python-build-system) + (arguments '(#:tests? #false)) ; none included + (propagated-inputs + `(("python-pyjsparser" ,python-pyjsparser) + ("python-six" ,python-six) + ("python-tzlocal" ,python-tzlocal))) + (home-page "https://github.com/PiotrDabkowski/Js2Py") + (synopsis "JavaScript to Python translator") + (description + "This package provides a JavaScript to Python translator and a JavaScript +interpreter written in pure Python.") + (license license:expat))) + (define-public python-http-ece (package (name "python-http-ece") |