diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2022-04-12 15:15:06 -0400 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2022-05-12 12:45:42 -0400 |
commit | 59e51d8f1c1492a2ea876b1f61a4a27372cbcde8 (patch) | |
tree | 9c9ac9ca7c7d0afe84f6a231e0b9016a1734d8a1 /gnu/packages | |
parent | 44dc0f0f0b1129b944e6b0c3d60f1ab9acdaccf9 (diff) | |
download | guix-59e51d8f1c1492a2ea876b1f61a4a27372cbcde8.tar.gz guix-59e51d8f1c1492a2ea876b1f61a4a27372cbcde8.zip |
gnu: python-pytest-xdist-next: Update to 2.5.0.
* gnu/packages/check.scm (python-pytest-xdist-next): Update to 2.5.0.
[propagated-inputs]: replace python-pytest-forked with
python-pytest-forked-next.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/check.scm | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm index 5e0b653983..957d7a4262 100644 --- a/gnu/packages/check.scm +++ b/gnu/packages/check.scm @@ -1483,18 +1483,16 @@ result back.") (define-public python-pytest-xdist-next (package/inherit python-pytest-xdist (name "python-pytest-xdist") - (version "2.3.0") + (version "2.5.0") (source (origin (method url-fetch) (uri (pypi-uri "pytest-xdist" version)) (sha256 (base32 - "19cy57jrf3pwi7x6fnbxryjvqagsl0yv736jnynvr3yqhlpxxv78")))) - (propagated-inputs - `(("python-execnet" ,python-execnet) - ("python-pytest" ,python-pytest-6) - ("python-pytest-forked" ,python-pytest-forked))))) + "1psf5dqxvc38qzxvc305mkg5xpdmdkbkkfiyqlmdnkgh7z5dx025")))) + (propagated-inputs (list python-execnet python-pytest + python-pytest-forked-next)))) (define-public python-pytest-timeout (package |