diff options
author | Christopher Baines <mail@cbaines.net> | 2020-05-02 12:30:53 +0100 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2020-05-02 15:53:36 +0100 |
commit | a8cb1e72ef351330d1521833c1b270dcc0da593f (patch) | |
tree | 14851296ad0eaa2fa4a32fa60921397bc1030953 /gnu/packages/check.scm | |
parent | 20d7dbc77a2b0ed379c0a595daf8d7f852ef3a4c (diff) |
gnu: behave: Fix build with Python 3.8.
Add a patch based on an upstream commit [1].
1: c000c88eb5239b87f299c85e83b349b0ef387ae7
* gnu/packages/patches/behave-skip-a-couple-of-tests.patch: New file.
* gnu/local.mk (dist_patch_DATA): Add it.
* gnu/packages/check.scm (behave)[source]: Use the patch.
Diffstat (limited to 'gnu/packages/check.scm')
-rw-r--r-- | gnu/packages/check.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm index 05a796a3e3..2629e88323 100644 --- a/gnu/packages/check.scm +++ b/gnu/packages/check.scm @@ -2107,7 +2107,9 @@ backported from Python 2.7 for Python 2.4+.") (uri (pypi-uri "behave" version)) (sha256 (base32 - "11hsz365qglvpp1m1w16239c3kiw15lw7adha49lqaakm8kj6rmr")))) + "11hsz365qglvpp1m1w16239c3kiw15lw7adha49lqaakm8kj6rmr")) + (patches (search-patches + "behave-skip-a-couple-of-tests.patch")))) (build-system python-build-system) (native-inputs `(("python-mock" ,python-mock) |