py-chardet: add 5.1.0 (#37879)

* py-chardet: add 5.1.0

* Remove py-setuptools as run dependency
This commit is contained in:
Manuela Kuhn 2023-05-26 23:51:54 +02:00 committed by GitHub
parent afb3bef7af
commit ea210a6acf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -7,18 +7,17 @@
class PyChardet(PythonPackage):
"""Universal encoding detector for Python 2 and 3"""
"""Universal encoding detector for Python 3"""
homepage = "https://github.com/chardet/chardet"
pypi = "chardet/chardet-3.0.4.tar.gz"
version("5.1.0", sha256="0d62712b956bc154f85fb0a266e2a3c5913c2967e00348701b32411d6def31e5")
version("5.0.0", sha256="0368df2bfd78b5fc20572bb4e9bb7fb53e2c094f60ae9993339e8671d0afb8aa")
version("4.0.0", sha256="0d6f53a15db4120f2b08c94f11e7d93d2c911ee118b6b30a04ec3ee8310179fa")
version("3.0.4", sha256="84ab92ed1c4d4f16916e05906b6b75a6c0fb5db821cc65e70cbd64a3e2a5eaae")
version("3.0.2", sha256="4f7832e7c583348a9eddd927ee8514b3bf717c061f57b21dbe7697211454d9bb")
version("2.3.0", sha256="e53e38b3a4afe6d1132de62b7400a4ac363452dc5dfcf8d88e8e0cce663c68aa")
depends_on("python@3.6:", when="@5:", type=("build", "run"))
depends_on("python@2.7:2.8,3.5:", when="@4:", type=("build", "run"))
depends_on("py-setuptools", type=("build", "run"))
depends_on("py-setuptools", type="build")
depends_on("py-pytest-runner", when="@3", type="build")