summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2026-08-03 17:09:57 +0200
committerSharlatan Hellseher <sharlatanus@gmail.com>2026-08-08 23:02:29 +0100
commit465302608e2cfa8bf6feab48a3fac036b4004cb4 (patch)
treee326b338899dea1a33f46634cf17b11507363b7a /gnu
parentb0d2f66883d3cd75e265f935a5f42f6732054ca4 (diff)
gnu: python-flake8-pyi: Update to 26.5.0.
* gnu/packages/python-xyz.scm (python-flake8-pyi): Update to 26.5.0. [source]: Switch to git-fetch. [native-inputs]: Add python-hatch-vcs. [synopsis]: Make it more concise. Signed-off-by: Andreas Enge <andreas@enge.fr>
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/python-xyz.scm16
1 files changed, 10 insertions, 6 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 87db974a379..d9c84eef4fe 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -17748,13 +17748,16 @@ files.")
17748(define-public python-flake8-pyi 17748(define-public python-flake8-pyi
17749 (package 17749 (package
17750 (name "python-flake8-pyi") 17750 (name "python-flake8-pyi")
17751 (version "24.9.0") 17751 (version "26.5.0")
17752 (source 17752 (source
17753 (origin 17753 (origin
17754 (method url-fetch) 17754 (method git-fetch)
17755 (uri (pypi-uri "flake8_pyi" version)) 17755 (uri (git-reference
17756 (url "https://github.com/ambv/flake8-pyi")
17757 (commit version)))
17758 (file-name (git-file-name name version))
17756 (sha256 17759 (sha256
17757 (base32 "1n8cqbqq9cfyn952kwqqs4s7lcyycgr829ymxnplg0cm49877yv4")))) 17760 (base32 "006shfi8a99ysfac5s7fizx8f5w9hz3pl551kp9q1883rh1rfd5m"))))
17758 (build-system pyproject-build-system) 17761 (build-system pyproject-build-system)
17759 (arguments 17762 (arguments
17760 (list 17763 (list
@@ -17766,14 +17769,15 @@ files.")
17766 (substitute* "pyproject.toml" 17769 (substitute* "pyproject.toml"
17767 (("-nauto") ""))))))) 17770 (("-nauto") "")))))))
17768 (native-inputs 17771 (native-inputs
17769 (list python-hatchling 17772 (list python-hatch-vcs
17773 python-hatchling
17770 python-pytest)) 17774 python-pytest))
17771 (propagated-inputs 17775 (propagated-inputs
17772 (list python-attrs 17776 (list python-attrs
17773 python-flake8 17777 python-flake8
17774 python-pyflakes)) 17778 python-pyflakes))
17775 (home-page "https://github.com/ambv/flake8-pyi") 17779 (home-page "https://github.com/ambv/flake8-pyi")
17776 (synopsis "Flake8 plugin that provides specializations for type hinting stub files") 17780 (synopsis "Flake8 plugin for type hinting stub files")
17777 (description 17781 (description
17778 "This package contains a plugin that provides specializations for type 17782 "This package contains a plugin that provides specializations for type
17779hinting stub files, especially interesting for linting typeshed. It adds the 17783hinting stub files, especially interesting for linting typeshed. It adds the