gnu: python-codespell: Update to 2.3.0.

* gnu/packages/python-xyz.scm (python-codespell): Update to 2.3.0.
[arguments]<phases>: Add 'fix-pytest-config.
[inputs]: Remove python-chardet.
[propagated-inputs]: Add python-chardet.
[native-inputs]: Remove python-flake8 and python-pytest-cov.
[description]: Start from a new line, fix fill column.

Change-Id: Id3eb7e1547f37fbf92de3eaf1a5bf58f79ba5905
This commit is contained in:
Sharlatan Hellseher 2024-12-01 20:56:08 +00:00
parent c4e1b63cc9
commit 8cbd7e9aa4
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -20874,35 +20874,43 @@ checking library.")
(define-public python-codespell (define-public python-codespell
(package (package
(name "python-codespell") (name "python-codespell")
(version "2.2.5") (version "2.3.0")
(source (source
(origin (origin
(method url-fetch) (method url-fetch)
(uri (pypi-uri "codespell" version)) (uri (pypi-uri "codespell" version))
(sha256 (sha256
(base32 "0mmynpblhwbja0vmzbmbb9cgpxdl7b0lxaf9h2zr5dpddvgsv7vd")))) (base32 "07s72zfxkznigqdc23k7jp9saq0hgq0gf2kjmmxzcrayyw87s31n"))))
(build-system pyproject-build-system) (build-system pyproject-build-system)
(inputs (arguments
(list python-chardet)) (list
#:phases
#~(modify-phases %standard-phases
(add-after 'unpack 'fix-pytest-config
(lambda _
;; Drop test coverage requirements.
(substitute* "pyproject.toml"
(("\"--cov=codespell_lib\",") "")
(("\"--cov-report=\",") "")))))))
(native-inputs (native-inputs
(list python-flake8 (list python-pygments
python-pygments
python-pytest python-pytest
python-pytest-cov
python-pytest-dependency python-pytest-dependency
python-tomli python-tomli
python-setuptools python-setuptools
python-wheel)) python-wheel))
(propagated-inputs
(list python-chardet))
(home-page "https://github.com/codespell-project/codespell/") (home-page "https://github.com/codespell-project/codespell/")
(synopsis "Spellchecker for code") (synopsis "Spellchecker for code")
(description "Codespell fixes common misspellings in text files. (description
It's designed primarily for checking misspelled words in source code, "Codespell fixes common misspellings in text files. It's designed
but it can be used with other files as well. It does not check for word primarily for checking misspelled words in source code, but it can be used
membership in a complete dictionary, but instead looks for a set of with other files as well. It does not check for word membership in a complete
common misspellings. Therefore it should catch errors like \"adn\", but dictionary, but instead looks for a set of common misspellings. Therefore it
it will not catch \"adnasdfasdf\". This also means it shouldn't should catch errors like \"adn\", but it will not catch \"adnasdfasdf\". This
generate false-positives when you use a niche term it doesn't know also means it shouldn't generate false-positives when you use a niche term it
about.") doesn't know about.")
(license (license
(list (list
; for codespell and codespell_lib ; for codespell and codespell_lib