[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
07/10: gnu: Add python-autoflake.
From: |
guix-commits |
Subject: |
07/10: gnu: Add python-autoflake. |
Date: |
Mon, 7 Sep 2020 03:08:10 -0400 (EDT) |
mothacehe pushed a commit to branch master
in repository guix.
commit 5a016275aed35bf86ae7a4266a4f33e6f51467c0
Author: Vinicius Monego <monego@posteo.net>
AuthorDate: Sun Sep 6 02:46:50 2020 -0300
gnu: Add python-autoflake.
* gnu/packages/python-xyz.scm (python-autoflake): New variable.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
---
gnu/packages/python-xyz.scm | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 3e149a3..c189123 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -8199,6 +8199,30 @@ first-class forward references that stub files use.")
lints.")
(license license:bsd-2)))
+(define-public python-autoflake
+ (package
+ (name "python-autoflake")
+ (version "1.3.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "autoflake" version))
+ (sha256
+ (base32 "0nzr057dbmgprp4a52ymafdkdd5zp2wcqf42913xc7hhvvdbj338"))))
+ (build-system python-build-system)
+ (propagated-inputs
+ `(("python-pyflakes" ,python-pyflakes)))
+ (home-page "https://github.com/myint/autoflake")
+ (synopsis "Removes unused imports and unused variables")
+ (description
+ "@code{autoflake} removes unused imports and unused variables from Python
+code as reported by @code{pyflakes}.
+
+By default, it only removes unused imports for modules that are part of the
+standard library. Removal of unused variables is also disabled by default.
+It also removes useless @code{pass} statements.")
+ (license license:expat)))
+
(define-public python-mistune
(package
(name "python-mistune")
- branch master updated (2e5fef8 -> 32bf033), guix-commits, 2020/09/07
- 01/10: gnu: Add python-httptools., guix-commits, 2020/09/07
- 02/10: gnu: Add python-uvloop., guix-commits, 2020/09/07
- 03/10: gnu: Add python-pytest-toolbox., guix-commits, 2020/09/07
- 04/10: gnu: Add python-watchgod., guix-commits, 2020/09/07
- 05/10: gnu: Add python-uvicorn., guix-commits, 2020/09/07
- 06/10: gnu: Add python-flake8-pie., guix-commits, 2020/09/07
- 07/10: gnu: Add python-autoflake.,
guix-commits <=
- 09/10: gnu: Add python-httpcore., guix-commits, 2020/09/07
- 08/10: gnu: Add python-trio-typing., guix-commits, 2020/09/07
- 10/10: gnu: Add python-httpx., guix-commits, 2020/09/07