diff --git a/gnu/packages/python-build.scm b/gnu/packages/python-build.scm index c1a8e265ed..518fd6883f 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") diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 2b2ce9423f..e6fbf63935 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -14325,31 +14325,6 @@ enforced method signatures and consistent documentation.") releases.") (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 - python-setuptools)) - (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-vcs (package (name "python-jaraco-vcs")