[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#69074] [PATCH] gnu: Add python-rpyc.
From: |
soeren |
Subject: |
[bug#69074] [PATCH] gnu: Add python-rpyc. |
Date: |
Mon, 12 Feb 2024 15:58:20 +0100 |
From: Sören Tempel <soeren@soeren-tempel.net>
* gnu/packages/python-xyz.scm (python-rpyc): New variable.
---
gnu/packages/python-xyz.scm | 26 ++++++++++++++++++++++++++
1 file changed, 26 insertions(+)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index f94b0056f0..5fe5c0d60a 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -32303,6 +32303,32 @@ (define-public python-opcodes
and BMI2).")
(license license:bsd-2))))
+(define-public python-rpyc
+ (package
+ (name "python-rpyc")
+ (version "5.3.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "rpyc" version))
+ (sha256
+ (base32 "0lmzrxc6f0sg6k0yvi6f2z44dkhiankdadv44sp1ibwzhxs328zj"))))
+ (build-system pyproject-build-system)
+ (arguments
+ (list
+ #:tests? #f)) ;tests require network
+ (propagated-inputs (list python-hatchling python-plumbum))
+ (home-page "https://github.com/tomerfiliba-org/rpyc")
+ (synopsis
+ "Remote Python Call (RPyC) is a symmetric distributed computing library")
+ (description
+ "This Python module enables remote procedure calls, clustering, and
+distributed-computing. For this purpose, it makes use of object-proxying, a
technique
+that employs python's dynamic nature, to overcome the physical boundaries
between
+processes and computers, so that remote objects can be manipulated as if they
+were local.")
+ (license license:expat)))
+
(define-public python-nampa
(package
(name "python-nampa")
- [bug#69074] [PATCH] Add python-angr., soeren, 2024/02/12
- [bug#69074] [PATCH] gnu: Add python-mulpyplexer., soeren, 2024/02/12
- [bug#69074] [PATCH] gnu: Add python-rpyc.,
soeren <=
- [bug#69074] [PATCH] gnu: Add python-itanium-demangle., soeren, 2024/02/12
- [bug#69074] [PATCH] gnu: Add python-nampa., soeren, 2024/02/12
- [bug#69074] [PATCH] gnu: Add python-keystone-engine., soeren, 2024/02/12
- [bug#69074] [PATCH] gnu: Add python-claripy., soeren, 2024/02/12
- [bug#69074] [PATCH] gnu: Add python-archinfo., soeren, 2024/02/12
- [bug#69074] [PATCH] gnu: Add python-pysmt., soeren, 2024/02/12
- [bug#69074] [PATCH] gnu: capstone: Backport upstream fix for Python bindings., soeren, 2024/02/12
- [bug#69074] [PATCH] gnu: unicorn: Update to 2.0.1.post1., soeren, 2024/02/12
- [bug#69074] [PATCH] gnu: Add python-angr., soeren, 2024/02/12
- [bug#69074] [PATCH] gnu: Add python-ailment., soeren, 2024/02/12