python3Packages.faust-cchardet: 2.1.20 -> 2.2.1

Diff: https://github.com/faust-streaming/cChardet/compare/v2.1.20...v2.2.1

Changelog: https://github.com/faust-streaming/cChardet/blob/v2.2.1/CHANGES.rst
This commit is contained in:
Robert Schütz
2026-08-02 08:17:18 -07:00
parent 91352a0710
commit 4899257e7a

View File

@@ -3,16 +3,14 @@
buildPythonPackage,
fetchFromGitHub,
cython,
packaging,
pkgconfig,
setuptools,
meson-python,
pytestCheckHook,
python,
}:
buildPythonPackage rec {
pname = "faust-cchardet";
version = "2.1.20";
version = "2.2.1";
pyproject = true;
src = fetchFromGitHub {
@@ -20,19 +18,12 @@ buildPythonPackage rec {
repo = "cChardet";
tag = "v${version}";
fetchSubmodules = true;
hash = "sha256-MeRX/g38c+q2jiTtEhUpaGYf+5tkhexRGuIG0PdUGvI=";
hash = "sha256-m/wa41dhLFmRg20iAn1YkXVCIubp5bT4PI+YuUIK3Wc=";
};
postPatch = ''
substituteInPlace pyproject.toml \
--replace-fail "packaging<26" packaging
'';
build-system = [
cython
packaging
pkgconfig
setuptools
meson-python
];
postFixup = ''