diff options
author | Josselin Poiret <dev@jpoiret.xyz> | 2023-04-15 16:08:18 +0200 |
---|---|---|
committer | Andreas Enge <andreas@enge.fr> | 2023-04-15 22:28:58 +0200 |
commit | df6848565aef4371f9ac4749145a59f9a41a76f3 (patch) | |
tree | ca97617aa48b7f48c413e3edb659cbed72e243cd /gnu/packages/check.scm | |
parent | d16538c935f6bd49dec032db2e484b2652a404fd (diff) | |
download | guix-df6848565aef4371f9ac4749145a59f9a41a76f3.tar.gz |
gnu: python-pytest: Fix failing test_raising_repr.
* gnu/packages/patches/pytest-fix-unstrable-exception-test.patch: Add new patch from upstream. * gnu/packages/check.scm (python-pytest): Use it. * gnu/local.mk (dist_patch_DATA): Register it. Signed-off-by: Andreas Enge <andreas@enge.fr>
Diffstat (limited to 'gnu/packages/check.scm')
-rw-r--r-- | gnu/packages/check.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm index 14e8607154..cb38ea8538 100644 --- a/gnu/packages/check.scm +++ b/gnu/packages/check.scm @@ -1268,7 +1268,8 @@ standard library.") (uri (pypi-uri "pytest" version)) (sha256 (base32 - "0f8c31v5r2kgjixvy267n0nhc4xsy65g3n9lz1i1377z5pn5ydjg")))) + "0f8c31v5r2kgjixvy267n0nhc4xsy65g3n9lz1i1377z5pn5ydjg")) + (patches (search-patches "pytest-fix-unstrable-exception-test.patch")))) (build-system python-build-system) (arguments (list |