guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 43857e4cf0c9db5a8a60eb7d693c7bbb0baafbe8
Author: Nicolas Graves <[email protected]>
AuthorDate: Sun Oct 26 18:07:24 2025 +0100
gnu: python-gipc: Update to 1.8.0.
* gnu/packages/python-xyz.scm (python-gipc): Update to 1.8.0.
[source]: Switch to git-fetch.
[build-system]: Switch to pyproject-build-system.
[arguments]<#:tests?>: Disable them.
[native-inputs]: Add python-pytest, python-setuptools. Remove unzip.
[description]: Improve style.
Change-Id: Ib98a76e6df6d37f718e363485351a61c78e6858f
Signed-off-by: Sharlatan Hellseher <[email protected]>
---
gnu/packages/python-xyz.scm | 32 ++++++++++++++++++--------------
1 file changed, 18 insertions(+), 14 deletions(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index e15e4969e8..0719f16499 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -27269,25 +27269,29 @@ Glob2 currently based on the glob code from Python
3.3.1.")
(define-public python-gipc
(package
(name "python-gipc")
- (version "0.6.0")
+ (version "1.8.0")
(source
(origin
- (method url-fetch)
- (uri (pypi-uri "gipc" version ".zip"))
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/jgehrcke/gipc")
+ (commit version)))
+ (file-name (git-file-name name version))
(sha256
- (base32
- "0pd9by719qh882hqs6xpby61sn1x5h98hms5p2p8yqnycrf1s0h2"))))
- (build-system python-build-system)
- (native-inputs
- (list unzip))
- (propagated-inputs
- (list python-gevent))
+ (base32 "18w1fi3gh8i3kl58n6jpixzc2w42znxqhb3lj6hwn1641wq2hyrz"))))
+ (build-system pyproject-build-system)
+ (arguments
+ ;; Some tests seem to require an older version of pytest.
+ (list #:tests? #f))
+ (native-inputs (list python-pytest python-setuptools))
+ (propagated-inputs (list python-gevent))
(home-page "https://gehrcke.de/gipc/")
(synopsis "Child process management in the context of gevent")
- (description "Usage of Python's multiprocessing package in a
-gevent-powered application may raise problems. With @code{gipc},
-process-based child processes can safely be created anywhere within a
-gevent-powered application.")
+ (description
+ "Usage of Python's multiprocessing package in a gevent-powered
+application may raise problems. With @code{gipc}, process-based child
+processes can safely be created anywhere within a gevent-powered
+application.")
(license license:expat)))
(define-public python-beautifultable