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

commit 02d9d4ed1c1afba4981024a93e0a6e8749d35016
Author: Nicolas Graves <[email protected]>
AuthorDate: Fri Oct 31 02:09:10 2025 +0100

    gnu: python-testpath: Move to (gnu packages python-build).
    
    * gnu/packages/check.scm (python-testpath): Move from here…
    * gnu/packages/python-build.scm (python-testpath): …to here.
    [native-inputs]: Replace python-pytest by python-pytest-bootstrap.
    
    Change-Id: I3796f3cddc366d86c99fcef72b7b950791e99ef2
    Signed-off-by: Sharlatan Hellseher <[email protected]>
---
 gnu/packages/check.scm        | 26 --------------------------
 gnu/packages/python-build.scm | 26 ++++++++++++++++++++++++++
 2 files changed, 26 insertions(+), 26 deletions(-)

diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm
index 2c996ed01d..d2f29c5dbd 100644
--- a/gnu/packages/check.scm
+++ b/gnu/packages/check.scm
@@ -2552,32 +2552,6 @@ to make testing async code easier.")
 C/C++, R, and more, and uploads it to the @code{codecov.io} service.")
     (license license:asl2.0)))
 
-(define-public python-testpath
-  (package
-    (name "python-testpath")
-    (version "0.6.0")
-    (source
-     (origin
-       (method git-fetch)
-       (uri (git-reference
-              (url "https://github.com/jupyter/testpath";)
-              (commit version)))
-       (file-name (git-file-name name version))
-       (sha256
-        (base32
-         "0pib1xsvjwwyyhv0sqzxvgg814k83dmv1ppwfkkq9llkhr8k7s9y"))))
-    (build-system pyproject-build-system)
-    (native-inputs
-     (list python-flit-core
-           python-pytest))
-    (home-page "https://github.com/jupyter/testpath";)
-    (synopsis "Test utilities for code working with files and commands")
-    (description
-     "Testpath is a collection of utilities for Python code working with files
-and commands.  It contains functions to check things on the file system, and
-tools for mocking system commands and recording calls to those.")
-    (license license:expat)))
-
 (define-public python-pytest-localserver
   (package
     (name "python-pytest-localserver")
diff --git a/gnu/packages/python-build.scm b/gnu/packages/python-build.scm
index 3b597d33c3..5b92ec1b13 100644
--- a/gnu/packages/python-build.scm
+++ b/gnu/packages/python-build.scm
@@ -126,6 +126,32 @@ matching of file paths.")
 stripped of Pytest specific details.")
     (license license:expat)))
 
+(define-public python-testpath
+  (package
+    (name "python-testpath")
+    (version "0.6.0")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+              (url "https://github.com/jupyter/testpath";)
+              (commit version)))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32
+         "0pib1xsvjwwyyhv0sqzxvgg814k83dmv1ppwfkkq9llkhr8k7s9y"))))
+    (build-system pyproject-build-system)
+    (native-inputs
+     (list python-flit-core
+           python-pytest-bootstrap))
+    (home-page "https://github.com/jupyter/testpath";)
+    (synopsis "Test utilities for code working with files and commands")
+    (description
+     "Testpath is a collection of utilities for Python code working with files
+and commands.  It contains functions to check things on the file system, and
+tools for mocking system commands and recording calls to those.")
+    (license license:expat)))
+
 (define-public python-toml
   (package
     (name "python-toml")

Reply via email to