diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2022-06-07 09:22:35 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2022-06-07 09:22:35 +0300 |
commit | 49a47bdcc5fb6dd8363917ea005fb51155c8e266 (patch) | |
tree | 51b59121d66d47393af018ff439e6b63a28615e6 /gnu/packages/python-xyz.scm | |
parent | 7e7c8b253cc520812dacfb3a33427a992f56b74c (diff) | |
download | guix-49a47bdcc5fb6dd8363917ea005fb51155c8e266.tar.gz guix-49a47bdcc5fb6dd8363917ea005fb51155c8e266.zip |
gnu: python-flake8-polyfill: Fix building with python-flake8@4.
* gnu/packages/python-xyz.scm (python-flake8-polyfill)[source]: Add patch.
* gnu/packages/patches/python-flake8-polyfill-flake8-4-compat.patch: New
file.
* gnu/local.mk (dist_patch_DATA): Register 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 b9af0d4a3f..d5ad05f4d9 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -10359,7 +10359,8 @@ unnecessary plus operators for explicit string literal concatenation.") (uri (pypi-uri "flake8-polyfill" version)) (sha256 (base32 - "1nlf1mkqw856vi6782qcglqhaacb23khk9wkcgn55npnjxshhjz4")))) + "1nlf1mkqw856vi6782qcglqhaacb23khk9wkcgn55npnjxshhjz4")) + (patches (search-patches "python-flake8-polyfill-flake8-4-compat.patch")))) (build-system python-build-system) (arguments '(#:phases |