summaryrefslogtreecommitdiff
path: root/gnu/packages/python-xyz.scm
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2025-10-26 18:07:24 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-10-29 15:28:36 +0000
commit43857e4cf0c9db5a8a60eb7d693c7bbb0baafbe8 (patch)
tree81069a3e9120bc80ae9e69f7e5277b82196e34a3 /gnu/packages/python-xyz.scm
parent750104cde65fd7bb50a701e5b70b92941d4b7f6b (diff)
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 <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r--gnu/packages/python-xyz.scm32
1 files changed, 18 insertions, 14 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index e15e4969e8e..0719f164994 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