guix_mirror_bot pushed a commit to branch master
in repository guix.

commit efd326aa63879f67640161fb425ac269e28c729f
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Tue Aug 11 03:25:45 2026 +0100

    gnu: Remove python-pytest-forked.
    
    * gnu/packages/check.scm (python-pytest-forked): Delete variable.
    
    Relates-to: guix/guix#7475
    Signed-off-by: Andreas Enge <[email protected]>
---
 gnu/packages/check.scm | 34 ----------------------------------
 1 file changed, 34 deletions(-)

diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm
index 77c81c5405..1474c1d54f 100644
--- a/gnu/packages/check.scm
+++ b/gnu/packages/check.scm
@@ -2048,40 +2048,6 @@ code to a remote location, executes there, and then 
syncs the result back.")
 timeout has been exceeded.")
     (license license:expat)))
 
-(define-public python-pytest-forked
-  (package
-    (name "python-pytest-forked")
-    (version "1.6.0")
-    (source
-     (origin
-       (method git-fetch)               ;for tests
-       (uri (git-reference
-             (url "https://github.com/pytest-dev/pytest-forked";)
-             (commit (string-append "v" version))))
-       (file-name (git-file-name name version))
-       (sha256
-        (base32
-         "1y93q914gwf0nshql1qix6sj826q163b04vw17zmwhsnbv00c2d3"))))
-    (build-system pyproject-build-system)
-    (arguments
-     ;; See <https://github.com/pytest-dev/pytest-forked/issues/88>.
-     (list #:tests? #f))
-    (native-inputs
-     ;; XXX: The bootstrap variant of Pytest is used to ensure the
-     ;; 'hypothesis' plugin is not in the environment (due to
-     ;; <http://issues.guix.gnu.org/25235>), which would cause the test suite
-     ;; to fail (see: https://github.com/pytest-dev/pytest-forked/issues/54).
-     (list python-pytest-bootstrap python-setuptools
-           python-setuptools-scm python-wheel))
-    (propagated-inputs (list python-py))
-    (home-page "https://github.com/pytest-dev/pytest-forked";)
-    (synopsis "Pytest plugin to run tests in isolated forked subprocesses")
-    (description "This package provides a Pytest plugin which enables running
-each test in a subprocess and will report if a test crashed the process.  It
-can be useful to isolate tests against undesirable global environment
-side-effects (such as setting environment variables).")
-    (license license:expat)))
-
 (define-public python-scripttest
   (package
     (name "python-scripttest")

Reply via email to