diff options
| author | Matthew Elwin <elwin@northwestern.edu> | 2025-04-28 08:36:56 -0500 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-04-28 22:04:52 +0100 |
| commit | e5876f6aff5d4dcbec6a2053802b7bc7e8b3068a (patch) | |
| tree | 4a2f0667586b914d475b7172b2c19bfad0755651 /gnu/packages/python-check.scm | |
| parent | 3048a24eb8c81f9eb28e34370f2328c0f928fec4 (diff) | |
gnu: Add python-flake8-deprecated.
* gnu/packages/python-check.scm (python-flake8-deprecated): New variable.
Change-Id: If555230ff854ad26c5466a47b04a212189a113b9
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/python-check.scm')
| -rw-r--r-- | gnu/packages/python-check.scm | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/gnu/packages/python-check.scm b/gnu/packages/python-check.scm index 33c3f49c00d..5deb395ac73 100644 --- a/gnu/packages/python-check.scm +++ b/gnu/packages/python-check.scm @@ -676,6 +676,33 @@ test itself.") being used as variables or parameters.") (license license:gpl2))) +(define-public python-flake8-deprecated + (package + (name "python-flake8-deprecated") + (version "2.2.1") + (source + (origin + (method url-fetch) + (uri (pypi-uri "flake8_deprecated" version)) + (sha256 + (base32 "18iazzh2l42fcjmkqdwncsl1h2s6sbi26vz4m0gmd80w3l0cm5pf")))) + (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-deprecated") + (synopsis "Warns about deprecated method calls in Python") + (description + "This flake8 plugin helps you keep up with method deprecations by +providing hints about what deprecated methods should be replaced with.") + (license license:gpl2))) + (define-public python-gcovr (package (name "python-gcovr") |
