diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2020-10-18 09:27:20 -0400 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2020-10-18 11:58:03 -0400 |
commit | d238188969b2ee827d966e79901a6b1fa364cd56 (patch) | |
tree | 121fb8c283efd1e297403caf3a786fbee450f0fd /gnu/packages/python-xyz.scm | |
parent | 7e420add88484a01e31d87e4d7f56ee3682c8a66 (diff) | |
download | guix-d238188969b2ee827d966e79901a6b1fa364cd56.tar guix-d238188969b2ee827d966e79901a6b1fa364cd56.tar.gz |
gnu: python-babel: Fix build.
* gnu/packages/patches/python-babel-fix-parse-future-test.patch: New file.
* gnu/local.mk (dist_patch_DATA): Register it.
* gnu/packages/python-xyz.scm (python-babel): Use it.
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r-- | gnu/packages/python-xyz.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 3e66e5a7eb..30ef4fce8f 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -631,7 +631,8 @@ by @code{binstar}, @code{binstar-build}, and @code{chalmers}.") (uri (pypi-uri "Babel" version)) (sha256 (base32 - "0f0f2vvs1mpdpz2c0mg1mnc3sih8bizmc1h9m67kdsnqs3i2mb0s")))) + "0f0f2vvs1mpdpz2c0mg1mnc3sih8bizmc1h9m67kdsnqs3i2mb0s")) + (patches (search-patches "python-babel-fix-parse-future-test.patch")))) (build-system python-build-system) (native-inputs `(("python-freezegun" ,python-freezegun) |