guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

05/15: gnu: Add python-py4j.


From: guix-commits
Subject: 05/15: gnu: Add python-py4j.
Date: Sat, 10 Dec 2022 08:59:03 -0500 (EST)

rekado pushed a commit to branch wip-python-graphviz
in repository guix.

commit a2c2c4978d888a706521343bf3b4ca0e94dbae4e
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Thu Dec 8 15:13:39 2022 +0100

    gnu: Add python-py4j.
    
    * gnu/packages/python-xyz.scm (python-py4j): New variable.
---
 gnu/packages/python-xyz.scm | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 40c3f9c99c..ab54acec21 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -901,6 +901,24 @@ template")
 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")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]