diff options
author | Vinicius Monego <monego@posteo.net> | 2025-06-26 11:31:23 -0300 |
---|---|---|
committer | Vinicius Monego <monego@posteo.net> | 2025-06-29 00:04:42 -0300 |
commit | b6c383eb5bce93c9490215714ea62f990151c9be (patch) | |
tree | 491655909ed5d500db2bfb9a48ec8961ce912f16 | |
parent | e9d4447f0baf24452934db143ffd72941bc68b7d (diff) |
gnu: python-pytest-check: Update to 2.5.3.
* gnu/packages/python-check.scm (python-pytest-check): Update to 2.5.3.
[native-inputs]: Remove python-flit-core. Add python-hatchling,
python-pytest.
[propagated-inputs]: Remove python-pytest.
Change-Id: I46b2beafcbf3e4f2a594fecdd4b59f8b1e72fce8
-rw-r--r-- | gnu/packages/python-check.scm | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/gnu/packages/python-check.scm b/gnu/packages/python-check.scm index 5d96a57141..310abccd08 100644 --- a/gnu/packages/python-check.scm +++ b/gnu/packages/python-check.scm @@ -1892,16 +1892,15 @@ Python code formatter \"black\".") (define-public python-pytest-check (package (name "python-pytest-check") - (version "2.4.1") + (version "2.5.3") (source (origin (method url-fetch) (uri (pypi-uri "pytest_check" version)) (sha256 - (base32 "0l7n2jhadbkmqr8kzja8zwclhjvhc87qsgr5v867zgsry37fy92j")))) + (base32 "1jkhmii6zrgzq0427sy9igm7a6nfvx7p4ms91h6d75f3fzgxfmr3")))) (build-system pyproject-build-system) - (native-inputs (list python-flit-core)) - (propagated-inputs (list python-pytest)) + (native-inputs (list python-hatchling python-pytest)) (home-page "https://github.com/okken/pytest-check") (synopsis "Pytest plugin to allow multiple failures") (description "This package provides a pytest plugin that allows multiple |