diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-04-28 21:57:33 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-04-28 22:04:58 +0100 |
| commit | d241fe7772ee0c40fcfc4b65ff04c067c4386ddd (patch) | |
| tree | 96041fdd51f97c403f239678781d653052005470 /gnu/packages/python-check.scm | |
| parent | e5876f6aff5d4dcbec6a2053802b7bc7e8b3068a (diff) | |
gnu: Add python-pytest-flake8-path.
* gnu/packages/python-check.scm (python-pytest-flake8-path): New variable.
Change-Id: I749d4263f5b6f11266912578c8750ba4f4e1df36
Diffstat (limited to 'gnu/packages/python-check.scm')
| -rw-r--r-- | gnu/packages/python-check.scm | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/gnu/packages/python-check.scm b/gnu/packages/python-check.scm index 5deb395ac73..5618f9bf120 100644 --- a/gnu/packages/python-check.scm +++ b/gnu/packages/python-check.scm @@ -2147,6 +2147,32 @@ testing framework.") compliance.") (license license:bsd-3))) +(define-public python-pytest-flake8-path + (package + (name "python-pytest-flake8-path") + (version "1.6.0") + (source + (origin + (method git-fetch) ;no tests in PyPI archive + (uri (git-reference + (url "https://github.com/adamchainz/pytest-flake8-path") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1k1lv34jmfirdwa2dpiim8803b6krqy3m7k2knc39fgmzbd6yc8z")))) + (build-system pyproject-build-system) + (native-inputs + (list python-setuptools + python-wheel)) + (propagated-inputs + (list python-flake8 + python-pytest)) + (home-page "https://github.com/adamchainz/pytest-flake8-path") + (synopsis "Pytest fixture for testing flake8 plugins") + (description + "This package provides a pytest fixture for testing flake8 plugins.") + (license license:expat))) + (define-public python-pytest-flakefinder (package (name "python-pytest-flakefinder") |
