guix_mirror_bot pushed a commit to branch ungraft
in repository guix.

commit fe8b4f957c03efca7875a39360ffe23d7315833f
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Mon Dec 15 13:18:38 2025 +0000

    gnu: python-pytest-dependency: Move to python-check.
    
    * gnu/packages/check.scm (python-pytest-dependency): Move from here ...
    * gnu/packages/python-check.scm: ... to here.
    
    Change-Id: I135998cdbb0b321aa3c5e2a552d6374009e60fbe
---
 gnu/packages/check.scm        | 22 ----------------------
 gnu/packages/python-check.scm | 23 +++++++++++++++++++++++
 2 files changed, 23 insertions(+), 22 deletions(-)

diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm
index 0e2a3cbd0f..d0653d0f93 100644
--- a/gnu/packages/check.scm
+++ b/gnu/packages/check.scm
@@ -3787,28 +3787,6 @@ system.  The code under test requires no modification to 
work with pyfakefs.")
 asynchronous code in Python (asyncio).")
     (license license:expat)))
 
-(define-public python-pytest-dependency
-  (package
-    (name "python-pytest-dependency")
-    (version "0.6.0")
-    (source
-      (origin
-        (method url-fetch)
-        (uri (pypi-uri "pytest-dependency" version))
-        (sha256
-          (base32
-            "1hdcidq4miqd5fvg9khvzw3gm3waxnp7wgqr5h39anfr75m0wjwk"))))
-    (build-system pyproject-build-system)
-    (native-inputs
-      (list python-pytest-bootstrap
-            python-setuptools))
-    (home-page "https://github.com/RKrahl/pytest-dependency";)
-    (synopsis "Manage dependencies of tests")
-    (description "This pytest plugin manages dependencies of tests.  It allows
-to mark some tests as dependent from other tests.  These tests will then be
-skipped if any of the dependencies did fail or has been skipped.")
-    (license license:asl2.0)))
-
 (define-public python-pytest-datadir
   (package
     (name "python-pytest-datadir")
diff --git a/gnu/packages/python-check.scm b/gnu/packages/python-check.scm
index 0a5ee09abd..5a8a37bdda 100644
--- a/gnu/packages/python-check.scm
+++ b/gnu/packages/python-check.scm
@@ -15,6 +15,7 @@
 ;;; Copyright © 2020 Edouard Klein <[email protected]>
 ;;; Copyright © 2020, 2021, 2025 Vinicius Monego <[email protected]>
 ;;; Copyright © 2020 Tanguy Le Carrour <[email protected]>
+;;; Copyright © 2021 Lars-Dominik Braun <[email protected]>
 ;;; Copyright © 2021-2025 Sharlatan Hellseher <[email protected]>
 ;;; Copyright © 2021 Brendan Tildesley <[email protected]>
 ;;; Copyright © 2021 Giacomo Leidi <[email protected]>
@@ -2615,6 +2616,28 @@ it adds to the Pytest command line interface (CLI).")
 files and/or directories.")
     (license license:expat)))
 
+(define-public python-pytest-dependency
+  (package
+    (name "python-pytest-dependency")
+    (version "0.6.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "pytest-dependency" version))
+       (sha256
+        (base32 "1hdcidq4miqd5fvg9khvzw3gm3waxnp7wgqr5h39anfr75m0wjwk"))))
+    (build-system pyproject-build-system)
+    (native-inputs
+     (list python-pytest-bootstrap
+           python-setuptools))
+    (home-page "https://github.com/RKrahl/pytest-dependency";)
+    (synopsis "Manage dependencies of tests")
+    (description
+     "This pytest plugin manages dependencies of tests.  It allows
+to mark some tests as dependent from other tests.  These tests will then be
+skipped if any of the dependencies did fail or has been skipped.")
+    (license license:asl2.0)))
+
 (define-public python-pytest-doctest-custom
   (package
     (name "python-pytest-doctest-custom")

Reply via email to