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

commit b8dd70af3d593b201d8609abf6368b6fcb0908e6
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Sat Jul 12 14:36:59 2025 +0100

    gnu: python-pytest-bootstrap: Reduce closure size.
    
    * gnu/packages/check.scm (python-pytest-bootstrap): Use PACKAGE/INHERIT.
      [arguments] <phases>: Delete 'sanity-check.
      [native-inputs]: Remove python-iniconfig, python-tomli, and
      python-wheel.
    
    Change-Id: I6e0820a7ea7b6b7008de7f5307002af9e5fc62af
---
 gnu/packages/check.scm | 12 ++++--------
 1 file changed, 4 insertions(+), 8 deletions(-)

diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm
index 247b8a9dd4..c9509ce782 100644
--- a/gnu/packages/check.scm
+++ b/gnu/packages/check.scm
@@ -1726,16 +1726,12 @@ and many external plugins.")
 (export python-pytest-7)
 
 (define-public python-pytest-bootstrap
-  (package
-    (inherit python-pytest)
+  (package/inherit python-pytest
     (name "python-pytest-bootstrap")
+    (arguments (list #:tests? #f))
     (native-inputs
-     (list python-iniconfig
-           python-setuptools
-           python-setuptools-scm
-           python-tomli
-           python-wheel))
-    (arguments `(#:tests? #f))))
+     (list python-setuptools
+           python-setuptools-scm))))
 
 (define-public python-pytest-cov
   (package

Reply via email to