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

commit 3e480bf9222c05ae01008718b46d9eba7f3645c6
Author: Sharlatan Hellseher <sharlata...@gmail.com>
AuthorDate: Sat Jul 12 14:36:59 2025 +0100

    gnu: python-pytest-bootstrap: Hide package.
    
    * gnu/packages/check.scm (python-pytest-bootstrap): Make it hidden and
      use PACKAGE/INHERIT.
      [native-inputs]: Remove python-iniconfig, python-tomli, and
      python-wheel.
    
    Change-Id: I6e0820a7ea7b6b7008de7f5307002af9e5fc62af
---
 gnu/packages/check.scm | 15 ++++++---------
 1 file changed, 6 insertions(+), 9 deletions(-)

diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm
index 12392528a7..d4d33688d9 100644
--- a/gnu/packages/check.scm
+++ b/gnu/packages/check.scm
@@ -1686,16 +1686,13 @@ and many external plugins.")
 (export python-pytest-7)
 
 (define-public python-pytest-bootstrap
-  (package
-    (inherit python-pytest)
+  (hidden-package
+   (package/inherit python-pytest
     (name "python-pytest-bootstrap")
-    (native-inputs
-     (list python-iniconfig
-           python-setuptools
-           python-setuptools-scm
-           python-tomli
-           python-wheel))
-    (arguments `(#:tests? #f))))
+     (native-inputs
+      (list python-setuptools
+            python-setuptools-scm))
+     (arguments `(#:tests? #f)))))
 
 (define-public python-pytest-assume
   (package

Reply via email to