python310Packages.chardet 0 -> 1 attrpath: python310Packages.chardet Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/p5jr6d4m4qyfc3b2g9an7bmqnq7j80ai-packages.json.drv building '/nix/store/p5jr6d4m4qyfc3b2g9an7bmqnq7j80ai-packages.json.drv'... Going to be running update for following packages: - python3.10-chardet-5.0.0 Press Enter key to continue... Running update for: - python3.10-chardet-5.0.0: UPDATING ... - python3.10-chardet-5.0.0: DONE. Packages updated! [quotedUrls] [quotedUrls] nothing found to replace Diff after rewrites: diff --git a/pkgs/development/python-modules/chardet/default.nix b/pkgs/development/python-modules/chardet/default.nix index b5cca5110e7..897349f7f33 100644 --- a/pkgs/development/python-modules/chardet/default.nix +++ b/pkgs/development/python-modules/chardet/default.nix @@ -8,12 +8,12 @@ buildPythonPackage rec { pname = "chardet"; - version = "5.0.0"; + version = "5.1.0"; disabled = pythonOlder "3.6"; src = fetchPypi { inherit pname version; - sha256 = "sha256-A2jfK/14tfwgVyu06bt/tT4sCU9grpmTM56GcdCvuKo="; + sha256 = "sha256-DWJxK5VrwVT4X7CiZuKjxZE8KWfgA0hwGzJBHW3vMeU="; }; checkInputs = [ No auto update branch exists Old version 5.0.0" not present in staging derivation file with contents: { lib , buildPythonPackage , fetchPypi , hypothesis , pythonOlder , pytestCheckHook , setuptools }: buildPythonPackage rec { pname = "chardet"; version = "5.1.0"; format = "pyproject"; disabled = pythonOlder "3.6"; src = fetchPypi { inherit pname version; hash = "sha256-DWJxK5VrwVT4X7CiZuKjxZE8KWfgA0hwGzJBHW3vMeU="; }; nativeBuildInputs = [ setuptools ]; checkInputs = [ hypothesis pytestCheckHook ]; disabledTests = [ # flaky; https://github.com/chardet/chardet/issues/256 "test_detect_all_and_detect_one_should_agree" ]; pythonImportsCheck = [ "chardet" ]; meta = with lib; { changelog = "https://github.com/chardet/chardet/releases/tag/${version}"; description = "Universal encoding detector"; homepage = "https://github.com/chardet/chardet"; license = licenses.lgpl21Plus; maintainers = with maintainers; [ domenkozar ]; }; }