[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#45514] [PATCH 4/8] gnu: Add python-flake8-continuation.
From: |
Giacomo Leidi |
Subject: |
[bug#45514] [PATCH 4/8] gnu: Add python-flake8-continuation. |
Date: |
Mon, 28 Dec 2020 22:32:41 +0100 |
* gnu/packages/python-xyz.scm (python-flake8-continuation): New variable.
---
gnu/packages/python-xyz.scm | 28 ++++++++++++++++++++++++++++
1 file changed, 28 insertions(+)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 6f3b74bfab..e7ed416367 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -23255,3 +23255,31 @@ supports @code{readline} shortcuts.")
(synopsis "Client-Server SDK for Matrix")
(description "This package provides client-server SDK for Matrix.")
(license license:asl2.0)))
+
+(define-public python-flake8-continuation
+ (package
+ (name "python-flake8-continuation")
+ (version "1.0.5")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "flake8-continuation" version))
+ (sha256
+ (base32
+ "0dzaw8jr7yhlabxhrblnrizxx17xa9ngjnbr1kidg5lapq6b9q1y"))))
+ (build-system python-build-system)
+ (propagated-inputs
+ `(("python-flake8" ,python-flake8)
+ ("python-pycodestyle" ,python-pycodestyle)
+ ("python-six" ,python-six)))
+ (home-page "https://github.com/planetlabs/flake8-continuation")
+ (synopsis "Flake8 Line Continuation Plugin")
+ (description "A Flake8 plugin that checks for the line continuation
+style to be in the preferred method according to PEP-8, specifically:
+@quotation
+The preferred way of wrapping long lines is by using Python's implied
+line continuation inside parentheses, brackets and braces. Long lines
+can be broken over multiple lines by wrapping expressions in parentheses.
+These should be used in preference to using a backslash for line continuation.
+@end quotation")
+ (license license:asl2.0)))
--
2.29.2
- [bug#45514] [PATCH] Add zulip-term and dependencies., paul, 2020/12/28
- [bug#45514] [PATCH 1/8] gnu: python-urwid: Update to 2.1.1., Giacomo Leidi, 2020/12/28
- [bug#45514] [PATCH 3/8] gnu: Add python-matrix-client., Giacomo Leidi, 2020/12/28
- [bug#45514] [PATCH 6/8] gnu: Add python-snakeviz., Giacomo Leidi, 2020/12/28
- [bug#45514] [PATCH 4/8] gnu: Add python-flake8-continuation.,
Giacomo Leidi <=
- [bug#45514] [PATCH 5/8] gnu: Add python-flake8-quotes., Giacomo Leidi, 2020/12/28
- [bug#45514] [PATCH 2/8] gnu: Add python-urwid-readline., Giacomo Leidi, 2020/12/28
- [bug#45514] [PATCH 8/8] gnu: Add zulip-term., Giacomo Leidi, 2020/12/28
- [bug#45514] [PATCH 7/8] gnu: Add python-zulip., Giacomo Leidi, 2020/12/28