diff options
| author | Nicolas Graves <ngraves@ngraves.fr> | 2025-10-31 09:32:33 +0100 |
|---|---|---|
| committer | Andreas Enge <andreas@enge.fr> | 2026-02-07 12:28:24 +0100 |
| commit | bfae897c0b52635693b8a815e3bc5c3106e6e2e4 (patch) | |
| tree | 8a6e2e3d4f94bedad960fe36100a0ee5f5fe87db /gnu/packages/python-build.scm | |
| parent | b4e490053e82f80e329cd6d51ea7aa0763d1a54b (diff) | |
gnu: python-jaraco-test: Move to (gnu packages python-build).
* gnu/packages/python-xyz.scm (python-jaraco-test): Move from here…
* gnu/packages/python-build.scm (python-jaraco-test): …to here.
Change-Id: I0ae77cbdc492c60d48348981b042ad8bd9e1e963
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/python-build.scm')
| -rw-r--r-- | gnu/packages/python-build.scm | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/gnu/packages/python-build.scm b/gnu/packages/python-build.scm index c1a8e265ed7..518fd6883f0 100644 --- a/gnu/packages/python-build.scm +++ b/gnu/packages/python-build.scm @@ -1759,6 +1759,31 @@ module with a few extra procedures.") "This package provides miscellaneous path functions for Python.") (license license:expat))) +(define-public python-jaraco-test + (package + (name "python-jaraco-test") + (version "5.5.1") + (source + (origin + (method url-fetch) + (uri (pypi-uri "jaraco_test" version)) + (sha256 + (base32 "0xfkly5w4i4npi4pq1g32y8q8iijkq4pfcfs8wcjhfn4amj6212c")))) + (build-system pyproject-build-system) + (arguments + (list #:test-flags '(list "-k" "http"))) + (native-inputs + (list python-pytest-bootstrap + python-setuptools-bootstrap)) + (propagated-inputs + (list python-jaraco-collections + python-jaraco-context + python-jaraco-functools)) + (home-page "https://github.com/jaraco/jaraco.test") + (synopsis "Testing support by jaraco") + (description "This package provides testing support by jaraco.") + (license license:expat))) + (define-public python-jaraco-text (package (name "python-jaraco-text") |
