mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: Add python-flake8-builtins.
* gnu/packages/python-xyz.scm (python-flake8-builtins): New variable. Change-Id: I1fe2b01f3e95b922ec2a7f48024a2a9ffd598894 Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
This commit is contained in:
parent
60a7b3af4d
commit
bc9903f657
1 changed files with 26 additions and 0 deletions
|
@ -28,6 +28,7 @@
|
|||
;;; Copyright © 2024 Markku Korkeala <markku.korkeala@iki.fi>
|
||||
;;; Copyright © 2025 Evgeny Pisemsky <mail@pisemsky.site>
|
||||
;;; Copyright © 2025 Florent Pruvost <florent.pruvost@inria.fr>
|
||||
;;; Copyright © 2025 Matthew Elwin <elwin@northwestern.edu>
|
||||
;;; Copyright © 2025 Nicolas Graves <ngraves@ngraves.fr>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
|
@ -650,6 +651,31 @@ the initial expected value of a test can be automatically set by running the
|
|||
test itself.")
|
||||
(license license:expat))))
|
||||
|
||||
(define-public python-flake8-builtins
|
||||
(package
|
||||
(name "python-flake8-builtins")
|
||||
(version "2.5.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (pypi-uri "flake8_builtins" version))
|
||||
(sha256
|
||||
(base32 "19psav7pnqy3m5g4z1zah4ksbnk9bzx1jbbibs631xg44gc3vamx"))))
|
||||
(build-system pyproject-build-system)
|
||||
(arguments
|
||||
(list #:test-flags #~(list "run_tests.py")))
|
||||
(native-inputs
|
||||
(list python-hatchling
|
||||
python-pytest))
|
||||
(propagated-inputs
|
||||
(list python-flake8))
|
||||
(home-page "https://github.com/gforcada/flake8-builtins")
|
||||
(synopsis "Check for python builtins being used as variables or parameters")
|
||||
(description
|
||||
"This package implements a functionality to check for python builtins
|
||||
being used as variables or parameters.")
|
||||
(license license:gpl2)))
|
||||
|
||||
(define-public python-gcovr
|
||||
(package
|
||||
(name "python-gcovr")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue