summaryrefslogtreecommitdiff
path: root/gnu/packages/python-check.scm
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-01-26 11:14:58 +0000
committerAndreas Enge <andreas@enge.fr>2025-04-16 11:46:10 +0200
commitcbda85ccd21603f84e8ed212bede3cb5eb30ee29 (patch)
tree9c430a04b61f83fcc3c5c05fad4acb4b8227dcee /gnu/packages/python-check.scm
parente779b2c67c553758ad048a43763447a55449d531 (diff)
gnu: python-pytest-subprocess: Update to 1.5.3.
* gnu/packages/python-check.scm (python-pytest-subprocess): Update to 1.5.3. Fix build. [native-inputs]: Remove python-coverage and python-nox; add python-setuptools. Change-Id: I08853760786f656a9862cac3936cdfb44449f366
Diffstat (limited to 'gnu/packages/python-check.scm')
-rw-r--r--gnu/packages/python-check.scm22
1 files changed, 11 insertions, 11 deletions
diff --git a/gnu/packages/python-check.scm b/gnu/packages/python-check.scm
index 59372594bb1..7ae7973b20e 100644
--- a/gnu/packages/python-check.scm
+++ b/gnu/packages/python-check.scm
@@ -2897,7 +2897,7 @@ help in debugging failures and optimizing the scheduler to improve speed.")
(define-public python-pytest-subprocess
(package
(name "python-pytest-subprocess")
- (version "1.5.2")
+ (version "1.5.3")
(source
(origin
(method git-fetch) ;no tests in PyPI archive
@@ -2907,17 +2907,17 @@ help in debugging failures and optimizing the scheduler to improve speed.")
(file-name (git-file-name name version))
(sha256
(base32
- "1mncfyn0vkbf7d03zc8wmv7nl354ck5i9gfblp9220ihc52whhy0"))))
+ "1yb5y6dqzf6k5a07yzdpw8w50bm7zbsdvv06ii7c7vyg9wx5iw6y"))))
(build-system pyproject-build-system)
- (native-inputs (list python-anyio
- python-coverage
- python-docutils
- python-nox
- python-pygments
- python-pytest
- python-pytest-asyncio
- python-pytest-rerunfailures
- python-wheel))
+ (native-inputs
+ (list python-anyio
+ python-docutils
+ python-pygments
+ python-pytest
+ python-pytest-asyncio
+ python-pytest-rerunfailures
+ python-setuptools
+ python-wheel))
(home-page "https://github.com/aklajnert/pytest-subprocess")
(synopsis "Fake subprocess for Pytest")
(description