lol

python3Packages.chardet: 4.0.0 -> 5.0.0

+7 -2
+7 -2
pkgs/development/python-modules/chardet/default.nix
··· 8 8 9 9 buildPythonPackage rec { 10 10 pname = "chardet"; 11 - version = "4.0.0"; 11 + version = "5.0.0"; 12 12 disabled = pythonOlder "3.6"; 13 13 14 14 src = fetchPypi { 15 15 inherit pname version; 16 - sha256 = "sha256-DW9ToV20Eg8rCMlPEefZPSyRHuEYtrMKBOw+6DEBefo="; 16 + sha256 = "sha256-A2jfK/14tfwgVyu06bt/tT4sCU9grpmTM56GcdCvuKo="; 17 17 }; 18 18 19 19 checkInputs = [ 20 20 hypothesis 21 21 pytestCheckHook 22 + ]; 23 + 24 + disabledTests = [ 25 + # flaky; https://github.com/chardet/chardet/issues/256 26 + "test_detect_all_and_detect_one_should_agree" 22 27 ]; 23 28 24 29 pythonImportsCheck = [ "chardet" ];