11 buildPythonPackage rec {
15 disabled = pythonOlder "3.6";
18 inherit pname version;
19 hash = "sha256-Gztv9HmoxBS8P6LAhSmVaVxKAm3NbQYzst0JLKOcHPc=";
22 nativeBuildInputs = [ setuptools ];
30 # flaky; https://github.com/chardet/chardet/issues/256
31 "test_detect_all_and_detect_one_should_agree"
34 pythonImportsCheck = [ "chardet" ];
37 changelog = "https://github.com/chardet/chardet/releases/tag/${version}";
38 description = "Universal encoding detector";
39 mainProgram = "chardetect";
40 homepage = "https://github.com/chardet/chardet";
41 license = licenses.lgpl21Plus;
42 maintainers = with maintainers; [ domenkozar ];