guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

313/361: gnu: python-pytest-xprocess: Update to 1.0.2.


From: guix-commits
Subject: 313/361: gnu: python-pytest-xprocess: Update to 1.0.2.
Date: Fri, 22 Nov 2024 06:01:05 -0500 (EST)

andreas pushed a commit to branch python-team
in repository guix.

commit feb5d3068c5816405eb1fa6e04cb4d1e1109279a
Author: Sharlatan Hellseher <sharlatanus@gmail.com>
AuthorDate: Sat Nov 16 22:10:51 2024 +0000

    gnu: python-pytest-xprocess: Update to 1.0.2.
    
    * gnu/packages/check.scm (python-pytest-xprocess): Update to
    1.0.2. Refresh style.
    [build-system]: Swap to pyproject-build-system.
    [native-inputs]: Add python-setuptools and python-wheel.
    
    Change-Id: Ia1fb63da8adc35284e2d0a529d12db7cd270cbaa
---
 gnu/packages/check.scm | 27 +++++++++++++++------------
 1 file changed, 15 insertions(+), 12 deletions(-)

diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm
index af2563c01f..f118c4a870 100644
--- a/gnu/packages/check.scm
+++ b/gnu/packages/check.scm
@@ -2666,22 +2666,25 @@ framework which enables you to test server connections 
locally.")
 (define-public python-pytest-xprocess
   (package
     (name "python-pytest-xprocess")
-    (version "0.18.1")
-    (source (origin
-             (method url-fetch)
-             (uri (pypi-uri "pytest-xprocess" version))
-             (sha256
-              (base32
-               "0rm2rchrr63imn44xk5slwydxf8gvy579524qcxq7dc42pnk17zx"))))
-    (build-system python-build-system)
+    (version "1.0.2")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "pytest-xprocess" version))
+       (sha256
+        (base32 "03y61h42sc343ddhsz7glxmv9ga83k4grrayfmbbrsl6fmip1qhm"))))
+    (build-system pyproject-build-system)
     (native-inputs
-     (list python-setuptools-scm))
+     (list python-setuptools
+           python-setuptools-scm
+           python-wheel))
     (propagated-inputs
      (list python-pytest python-psutil))
-    (synopsis "Pytest plugin to manage external processes across test runs")
-    (description "Pytest-xprocess is an experimental py.test plugin for 
managing
-processes across test runs.")
     (home-page "https://github.com/pytest-dev/pytest-xprocess/";)
+    (synopsis "Pytest plugin to manage external processes across test runs")
+    (description
+     "Pytest-xprocess is an experimental py.test plugin for managing processes
+across test runs.")
     (license license:expat)))
 
 (define-public python-pytest-subtesthack



reply via email to

[Prev in Thread] Current Thread [Next in Thread]