diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-12-02 00:18:19 +0000 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-12-13 21:01:42 +0000 |
commit | 8e7932ad65701402291cf8ef5dc0c66eaf784316 (patch) | |
tree | 0236b10e68ef3eb3cf35532328efc15452d69cc0 /gnu/packages/python-xyz.scm | |
parent | 9864f1c7c552e6b2667c1cbfb5e50d5237c60d12 (diff) | |
download | guix-8e7932ad65701402291cf8ef5dc0c66eaf784316.tar.gz guix-8e7932ad65701402291cf8ef5dc0c66eaf784316.zip |
gnu: python-jaraco-test: Update to 5.5.1.
* gnu/packages/python-xyz.scm (python-jaraco-test): Update to 5.5.1.
[native-inputs]: Remove python-flake8, python-pytest-black, python-pytest-cov,
python-pytest-flake8, and python-pytest-mypy; add
python-jaraco-collections.
Change-Id: I4f90c713cc0c0128763234d63481faffe133d037
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r-- | gnu/packages/python-xyz.scm | 35 |
1 files changed, 17 insertions, 18 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index b6e4da8465..91a94027c3 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -12466,27 +12466,26 @@ releases.") (define-public python-jaraco-test (package (name "python-jaraco-test") - (version "5.3.0") - (source (origin - (method url-fetch) - (uri (pypi-uri "jaraco.test" version)) - (sha256 - (base32 - "0h0x8qmvfkfqvwdx2m7kwhn53sg26k8gkaas7s1730ak772zqrvz")))) + (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"))) - (propagated-inputs (list python-jaraco-context python-jaraco-functools)) - (native-inputs (list python-flake8 - python-pytest - python-pytest-black - python-pytest-checkdocs - python-pytest-cov - python-pytest-enabler - python-pytest-flake8 - python-pytest-mypy - python-setuptools - python-wheel)) + (native-inputs + (list python-jaraco-collections + python-pytest + python-pytest-checkdocs + python-pytest-enabler + python-setuptools + python-wheel)) + (propagated-inputs + (list 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.") |