Files
nixpkgs/pkgs/development/python-modules/chardet/5.nix
Martin Weinelt 8dd46a9af8 python3Packages.chardet_5: init at 5.2.0
Required for Pretix, because otherwise tests have weird ass failures.
2026-07-02 23:07:30 +02:00

45 lines
930 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
hypothesis,
pytestCheckHook,
setuptools,
}:
buildPythonPackage (finalAttrs: {
pname = "chardet";
version = "5.2.0";
pyproject = true;
__structuredAttrs = true;
src = fetchPypi {
inherit (finalAttrs) pname version;
hash = "sha256-Gztv9HmoxBS8P6LAhSmVaVxKAm3NbQYzst0JLKOcHPc=";
};
build-system = [ setuptools ];
nativeCheckInputs = [
hypothesis
pytestCheckHook
];
disabledTests = [
# flaky; https://github.com/chardet/chardet/issues/256
"test_detect_all_and_detect_one_should_agree"
];
pythonImportsCheck = [ "chardet" ];
meta = {
changelog = "https://github.com/chardet/chardet/releases/tag/${finalAttrs.version}";
description = "Universal encoding detector";
mainProgram = "chardetect";
homepage = "https://github.com/chardet/chardet";
license = lib.licenses.lgpl21Plus;
maintainers = [ ];
};
})