summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorjgart <jgart@dismail.de>2026-04-07 17:36:22 -0400
committerjgart <jgart@dismail.de>2026-04-07 17:39:05 -0400
commit1bfc951376ebb55830d7e7daba483c77fe8bee0c (patch)
treebe37c1a7422fc3b7d99a668fbe464e1a8e1badbd /gnu
parent75ad22703e7b22a19de0a0733555d33f1010f6a4 (diff)
gnu: python-vulture: Update to 2.16.
* gnu/packages/python-check.scm (python-vulture): Update to 2.16. [native-inputs]: Remove python-wheel. Add python-pytest-cov. [propagated-inputs]: Remove python-toml. Add python-tomli Change-Id: I952a0bf1ffd1a9a6cd67af6ed9bdf48cb1466a5b
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/python-check.scm10
1 files changed, 5 insertions, 5 deletions
diff --git a/gnu/packages/python-check.scm b/gnu/packages/python-check.scm
index 5dee2afe1fc..b4ef0566dea 100644
--- a/gnu/packages/python-check.scm
+++ b/gnu/packages/python-check.scm
@@ -5152,13 +5152,13 @@ interactions, which will update them to correspond to the new API.")
5152(define-public python-vulture 5152(define-public python-vulture
5153 (package 5153 (package
5154 (name "python-vulture") 5154 (name "python-vulture")
5155 (version "2.14") 5155 (version "2.16")
5156 (source 5156 (source
5157 (origin 5157 (origin
5158 (method url-fetch) 5158 (method url-fetch)
5159 (uri (pypi-uri "vulture" version)) 5159 (uri (pypi-uri "vulture" version))
5160 (sha256 5160 (sha256
5161 (base32 "05c4kfg6s2zf7lzplq53ihjf19knf3pmpv4nnzmdwf0i5a87g0nb")))) 5161 (base32 "05zpb79nhskdrbfmy4yk2wlkjgsvfv4l1hn6ldj1c083mzigdngq"))))
5162 (build-system pyproject-build-system) 5162 (build-system pyproject-build-system)
5163 (arguments 5163 (arguments
5164 (list 5164 (list
@@ -5174,10 +5174,10 @@ interactions, which will update them to correspond to the new API.")
5174 " and not ")))) 5174 " and not "))))
5175 (native-inputs 5175 (native-inputs
5176 (list python-pytest 5176 (list python-pytest
5177 python-setuptools 5177 python-pytest-cov
5178 python-wheel)) 5178 python-setuptools))
5179 (propagated-inputs 5179 (propagated-inputs
5180 (list python-toml)) 5180 (list python-tomli))
5181 (home-page "https://github.com/jendrikseipp/vulture") 5181 (home-page "https://github.com/jendrikseipp/vulture")
5182 (synopsis "Find dead Python code") 5182 (synopsis "Find dead Python code")
5183 (description 5183 (description