From 43857e4cf0c9db5a8a60eb7d693c7bbb0baafbe8 Mon Sep 17 00:00:00 2001 From: Nicolas Graves Date: Sun, 26 Oct 2025 18:07:24 +0100 Subject: 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 --- gnu/packages/python-xyz.scm | 32 ++++++++++++++++++-------------- 1 file changed, 18 insertions(+), 14 deletions(-) (limited to 'gnu') 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 -- cgit v1.3