[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: gnu: Add python-flake8-isort.
From: |
guix-commits |
Subject: |
branch master updated: gnu: Add python-flake8-isort. |
Date: |
Thu, 24 Mar 2022 20:59:04 -0400 |
This is an automated email from the git hooks/post-receive script.
apteryx pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new f252e6b8bf gnu: Add python-flake8-isort.
f252e6b8bf is described below
commit f252e6b8bf539db4ebc811aff40670af7cf26308
Author: Maxim Cournoyer <maxim.cournoyer@gmail.com>
AuthorDate: Thu Mar 24 20:57:18 2022 -0400
gnu: Add python-flake8-isort.
* gnu/packages/python-xyz.scm (python-flake8-isort): 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 e2bb1ca4ef..ae335cc83f 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -10739,6 +10739,34 @@ lints.")
TODO notes checker plugin for flake8.")
(license license:expat)))
+(define-public python-flake8-isort
+ (package
+ (name "python-flake8-isort")
+ (version "4.1.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "flake8-isort" version))
+ (sha256
+ (base32 "05r7z0j9rqgy0a9261bhisairrz6w8hy5hy5kf2mhvhfnx53056q"))))
+ (build-system python-build-system)
+ (arguments
+ (list
+ #:phases
+ #~(modify-phases %standard-phases
+ (replace 'check
+ (lambda* (#:key tests? #:allow-other-keys)
+ (when tests?
+ (invoke "pytest" "-vv")))))))
+ (propagated-inputs (list python-flake8 python-isort python-testfixtures))
+ (native-inputs (list python-pytest))
+ (home-page "https://github.com/gforcada/flake8-isort")
+ (synopsis "Flake8 plugin integrating isort")
+ (description "This package provides a flake8 plugin that integrates isort,
+extending flake8 so that it can warn about badly sorted Python import
+directives.")
+ (license license:gpl2+)))
+
(define-public python-autoflake
(package
(name "python-autoflake")
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch master updated: gnu: Add python-flake8-isort.,
guix-commits <=