[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#49834] [PATCH 5/6] gnu: Add python-pep8-naming.
From: |
Giacomo Leidi |
Subject: |
[bug#49834] [PATCH 5/6] gnu: Add python-pep8-naming. |
Date: |
Sat, 28 Aug 2021 13:51:52 +0200 |
* gnu/packages/python-xyz.scm (python-pep8-naming): New variable.
---
gnu/packages/python-xyz.scm | 25 +++++++++++++++++++++++++
1 file changed, 25 insertions(+)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index caff26e872..afece6381c 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -9242,6 +9242,31 @@ PEP 8.")
(define-public python2-pep8
(package-with-python2 python-pep8))
+(define-public python-pep8-naming
+ (package
+ (name "python-pep8-naming")
+ (version "0.12.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "pep8-naming" version))
+ (sha256
+ (base32
+ "04kyh9hkpyc8jzj16d1kkk29b5n8miqdvbs0zm035n1z5z5kx6hz"))))
+ (build-system python-build-system)
+ (propagated-inputs
+ `(("python-flake8" ,python-flake8)
+ ("python-flake8-polyfill"
+ ,python-flake8-polyfill)))
+ (home-page
+ "https://github.com/PyCQA/pep8-naming")
+ (synopsis
+ "Check PEP-8 naming conventions")
+ (description
+ "This package provides the @code{pep8-naming} Python module, a
+plugin for flake8 to check PEP-8 naming conventions.")
+ (license license:expat)))
+
(define-public python-pep517
(package
(inherit python-pep517-bootstrap)
--
2.33.0
- [bug#49833] [PATCH 3/7] gnu: Add python-dotenv., (continued)
- [bug#49833] [PATCH 3/7] gnu: Add python-dotenv., Giacomo Leidi, 2021/08/02
- [bug#49835] [PATCH 7/7] gnu: Add dynaconf., Giacomo Leidi, 2021/08/02
- [bug#49281] Add dynaconf, Sarah Morgensen, 2021/08/04
- [bug#49834] [PATCH 1/6] gnu: Add python-flake8-todo., Giacomo Leidi, 2021/08/28
- [bug#49834] Add dynaconf, Sarah Morgensen, 2021/08/28
- [bug#49834] [PATCH 1/4] gnu: Add python-dotenv., Giacomo Leidi, 2021/08/29