diff options
| author | Nicolas Graves <ngraves@ngraves.fr> | 2025-10-31 01:01:44 +0100 |
|---|---|---|
| committer | Andreas Enge <andreas@enge.fr> | 2026-02-07 12:28:21 +0100 |
| commit | 978e8c588d56def2431c870215be3aa1ca26d743 (patch) | |
| tree | 61efc40218a5eb863180a998dff2ab186f822d20 /gnu/packages/python-build.scm | |
| parent | 8dff06ca6dee637eeb326aaff41b63167c4c3b15 (diff) | |
gnu: python-pytest-bootstrap: Move to (gnu packages python-build).
* gnu/packages/check.scm (python-pytest-bootstrap): Move from here…
* gnu/packages/python-build.scm (python-pytest-bootstrap): …to here.
Redefine it to avoid inheritance.
Change-Id: I1494221674cac649d7a3710f7877f51c640af4e3
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/python-build.scm')
| -rw-r--r-- | gnu/packages/python-build.scm | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/gnu/packages/python-build.scm b/gnu/packages/python-build.scm index 74813322183..ce242a332d2 100644 --- a/gnu/packages/python-build.scm +++ b/gnu/packages/python-build.scm @@ -168,6 +168,34 @@ write-only counterpart to Tomli, which is a read-only TOML parser.") "Pygments is a syntax highlighting package written in Python.") (license license:bsd-2))) +(define-public python-pytest-bootstrap + (package + (name "python-pytest-bootstrap") + (version "9.0.2") + (source + (origin + (method url-fetch) + (uri (pypi-uri "pytest" version)) + (sha256 + (base32 "04fz1vbhb2l6k8lmrk8wqhkxhprlnkq21z6rs48rdn1bm58nc63m")))) + (build-system pyproject-build-system) + (arguments (list #:tests? #f)) + (native-inputs + (list python-setuptools-bootstrap + python-setuptools-scm-bootstrap)) + (propagated-inputs + (list python-iniconfig + python-packaging-bootstrap + python-pluggy + python-pygments-bootstrap)) ;it is in installation dependencies + (home-page "https://docs.pytest.org/en/latest/") + (synopsis "Python testing library") + (description + "Pytest is a testing tool that provides auto-discovery of test modules +and functions, detailed info on failing assert statements, modular fixtures, +and many external plugins.") + (license license:expat))) + (define-public python-pytoml (package (name "python-pytoml") |
