[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
14/23: gnu: python-pep8-naming: Update to 0.14.1.
From: |
guix-commits |
Subject: |
14/23: gnu: python-pep8-naming: Update to 0.14.1. |
Date: |
Sun, 1 Dec 2024 19:48:43 -0500 (EST) |
sharlatan pushed a commit to branch python-team
in repository guix.
commit 627bb7021a6494809ad8029f3c5abe8a7a5ae547
Author: Sharlatan Hellseher <sharlatanus@gmail.com>
AuthorDate: Sun Dec 1 20:19:31 2024 +0000
gnu: python-pep8-naming: Update to 0.14.1.
* gnu/packages/python-xyz.scm (python-pep8-naming): Update to 0.14.1.
[build-system]: Swap to pyproject-build-system.
[arguments]<phases>: Use custom 'check.
[native-inputs]: Add python-setuptools, and python-wheel.
[description]: Adjust fill column.
Change-Id: I6bb2cd30cad18518c91897070288c2872cad2a58
---
gnu/packages/python-xyz.scm | 25 ++++++++++++++++++-------
1 file changed, 18 insertions(+), 7 deletions(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 9e5b63a831..9712f6ce43 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -15059,21 +15059,32 @@ PEP 8.")
(define-public python-pep8-naming
(package
(name "python-pep8-naming")
- (version "0.13.0")
+ (version "0.14.1")
(source
(origin
(method url-fetch)
(uri (pypi-uri "pep8-naming" version))
(sha256
- (base32
- "1dc0b6xw1cxp01v9zsv4ryk49rfs1lngfpvzsixgp8b7z3ffcf4z"))))
- (build-system python-build-system)
- (propagated-inputs (list python-flake8))
+ (base32 "0dlapswhvzkkyw9gmjngc4rbzasdxnpxwj8mdkmmfmc7h2p2iwhy"))))
+ (build-system pyproject-build-system)
+ (arguments
+ (list
+ #:phases
+ #~(modify-phases %standard-phases
+ (replace 'check
+ (lambda* (#:key tests? #:allow-other-keys)
+ (when tests?
+ (invoke "python" "run_tests.py")))))))
+ (native-inputs
+ (list python-setuptools
+ python-wheel))
+ (propagated-inputs
+ (list python-flake8))
(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.")
+ "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-pep440
- 11/23: gnu: python-sphinx-5: Adjust inputs., (continued)
- 11/23: gnu: python-sphinx-5: Adjust inputs., guix-commits, 2024/12/01
- 01/23: gnu: python-stdio-mgr: Fix build., guix-commits, 2024/12/01
- 10/23: gnu: python-sphinx: Adjust inputs., guix-commits, 2024/12/01
- 13/23: gnu: python-py-partiql-parser: Update to 0.5.6., guix-commits, 2024/12/01
- 08/23: gnu: python-flake8-quotes: Update to 3.4.0., guix-commits, 2024/12/01
- 15/23: gnu: python-utils: Update to 3.9.1., guix-commits, 2024/12/01
- 17/23: gnu: python-codespell: Update to 2.3.0., guix-commits, 2024/12/01
- 18/23: gnu: python-diff-cover: Update to 9.2.0., guix-commits, 2024/12/01
- 19/23: gnu: python-marshmallow: Update to 3.22.0., guix-commits, 2024/12/01
- 20/23: gnu: python-faker: Update to 33.1.0., guix-commits, 2024/12/01
- 14/23: gnu: python-pep8-naming: Update to 0.14.1.,
guix-commits <=
- 09/23: gnu: python-flake8-isort: Update to 6.1.1., guix-commits, 2024/12/01
- 05/23: gnu: python-flake8-print: Update to 5.0.0., guix-commits, 2024/12/01
- 02/23: gnu: python-termcolor: Update to 2.5.0., guix-commits, 2024/12/01
- 16/23: gnu: python-progressbar2: Update to 4.5.0., guix-commits, 2024/12/01
- 12/23: gnu: python-validators: Update to 0.34.0., guix-commits, 2024/12/01
- 21/23: gnu: python-marshmallow-jsonapi: Use pyproject-build-system., guix-commits, 2024/12/01
- 22/23: gnu: python-arpeggio: Update to 2.0.2., guix-commits, 2024/12/01
- 23/23: gnu: python-jaraco-test: Update to 5.5.1., guix-commits, 2024/12/01