mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-08 07:56:16 -05:00
gnu: Add python-py4j.
* gnu/packages/python-xyz.scm (python-py4j): New variable.
This commit is contained in:
parent
df9a7c2032
commit
97cfa1cd78
1 changed files with 18 additions and 0 deletions
|
@ -901,6 +901,24 @@ (define-public python-mkdocs-markdownextradata-plugin
|
|||
variables into the markdown template")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public python-py4j
|
||||
(package
|
||||
(name "python-py4j")
|
||||
(version "0.10.9.7")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (pypi-uri "py4j" version))
|
||||
(sha256
|
||||
(base32
|
||||
"1fwdx92cdaiviradksfyygg05g1fpc3x2lf65bv5rnispcam6vhb"))))
|
||||
(build-system python-build-system)
|
||||
(home-page "https://www.py4j.org/")
|
||||
(synopsis "Dynamically access arbitrary Java objects from Python")
|
||||
(description
|
||||
"This package enables Python programs to dynamically access arbitrary
|
||||
Java objects.")
|
||||
(license license:bsd-3)))
|
||||
|
||||
(define-public python-pymdown-extensions
|
||||
(package
|
||||
(name "python-pymdown-extensions")
|
||||
|
|
Loading…
Reference in a new issue