summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-07-12 14:36:59 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-09-25 09:35:36 +0100
commit34a1f532249c955a7319d7cb50c876d46db2c5bb (patch)
tree7ac1913685d0b88356815f8fb8caaeffd418dfaa
parent949f90a52456871bc6c13b64c5dc8423d5904224 (diff)
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
-rw-r--r--gnu/packages/check.scm12
1 files changed, 4 insertions, 8 deletions
diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm
index cfe6e6ba88..2e39f4218e 100644
--- a/gnu/packages/check.scm
+++ b/gnu/packages/check.scm
@@ -1724,16 +1724,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