From 27aec9f5942a827d2a0cd696efb18ea29326cf5a Mon Sep 17 00:00:00 2001 From: Nicolas Graves Date: Sat, 25 Oct 2025 13:44:07 +0200 Subject: [PATCH] gnu: python-easyprocess: Update to 1.1. * gnu/packages/python-xyz.scm (python-easyprocess): Update to 1.1. [source]: Switch to git-fetch. [build-system]: Switch to pyproject-build-system. [native-inputs]: Add python-setuptools. Change-Id: Idb3343315ac143f447530622811cef45f90ca227 Signed-off-by: Sharlatan Hellseher --- gnu/packages/python-xyz.scm | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 8368d08025..f282f4f552 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -22699,17 +22699,21 @@ etc.") (define-public python-easyprocess (package (name "python-easyprocess") - (version "0.3") + (version "1.1") (source (origin - (method url-fetch) - (uri (pypi-uri "EasyProcess" version)) + (method git-fetch) + (uri (git-reference + (url "https://github.com/ponty/easyprocess") + (commit version))) + (file-name (git-file-name name version)) (sha256 - (base32 "115rzzr0hx4af4m6krf7dxn8851n4l8jfxahjzjc2r0zq2m8v57v")))) - (build-system python-build-system) + (base32 "1dysr0z2mijhxl4z86wxf4w94sszdm4i2w3id0a6qwyid6xqjksp")))) + (build-system pyproject-build-system) (arguments ;; Tests require pyvirtualdisplay, which requires this package. - `(#:tests? #f)) + (list #:tests? #f)) + (native-inputs (list python-setuptools)) (home-page "https://github.com/ponty/easyprocess") (synopsis "Python subprocess interface") (description