[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#69074] [PATCH v2 05/14] gnu: Add python-rpyc.
From: |
soeren |
Subject: |
[bug#69074] [PATCH v2 05/14] gnu: Add python-rpyc. |
Date: |
Sun, 10 Mar 2024 21:09:25 +0100 |
From: Sören Tempel <soeren@soeren-tempel.net>
* gnu/packages/python-xyz.scm (python-rpyc): New variable.
---
gnu/packages/python-xyz.scm | 39 +++++++++++++++++++++++++++++++++++++
1 file changed, 39 insertions(+)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index f713e27c64..f9bd733ecd 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -32303,6 +32303,45 @@ (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 git-fetch)
+ (uri (git-reference
+ (url "https://github.com/tomerfiliba-org/rpyc")
+ (commit version)))
+ (sha256
+ (base32 "15mnp9qkyw3mmxmr5y4kf3xkvxyp00n892vqaqwznr7al35apgnr"))
+ (snippet '(begin
+ ;; Disable deploy tests, these rely on OpenSSH and require
+ ;; configuring the SSH client manually to accept the host
key.
+ (delete-file "tests/test_deploy.py")
+ ;; Disable tests requiring network access. These tests
+ ;; presently fail with the error "Network is unreachable".
+ (delete-file "tests/test_registry.py")))))
+ (build-system pyproject-build-system)
+ (arguments
+ `(#:phases (modify-phases %standard-phases
+ (replace 'check
+ (lambda* (#:key tests? #:allow-other-keys)
+ (when tests?
+ (with-directory-excursion "tests"
+ (invoke "python" "-m" "unittest"))))))))
+ (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 v2 01/14] gnu: Add python-itanium-demangle., soeren, 2024/03/10
- [bug#69074] [PATCH v2 02/14] gnu: Add python-keystone-engine., soeren, 2024/03/10
- [bug#69074] [PATCH v2 04/14] gnu: Add python-nampa., soeren, 2024/03/10
- [bug#69074] [PATCH v2 08/14] gnu: Add python-archinfo., soeren, 2024/03/10
- [bug#69074] [PATCH v2 05/14] gnu: Add python-rpyc.,
soeren <=
- [bug#69074] [PATCH v2 12/14] gnu: unicorn: Update to 2.0.1.post1., soeren, 2024/03/10
- [bug#69074] [PATCH v2 11/14] gnu: Add python-ailment., soeren, 2024/03/10
- [bug#69074] [PATCH v2 07/14] gnu: Add python-claripy., soeren, 2024/03/10
- [bug#69074] [PATCH v2 03/14] gnu: Add python-mulpyplexer., soeren, 2024/03/10
- [bug#69074] [PATCH v2 10/14] gnu: Add python-cle., soeren, 2024/03/10
- [bug#69074] [PATCH v2 09/14] gnu: Add python-pyvex., soeren, 2024/03/10
- [bug#69074] [PATCH v2 06/14] gnu: Add python-pysmt., soeren, 2024/03/10
- [bug#69074] [PATCH v2 13/14] gnu: capstone: Backport upstream fix for Python bindings., soeren, 2024/03/10
- [bug#69074] [PATCH v2 14/14] gnu: Add python-angr., soeren, 2024/03/10