python310Packages.wcwidth 0 -> 1 attrpath: python310Packages.wcwidth 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/5l9ylxkmnxflln41agad6gkqfz6kc1f6-packages.json.drv building '/nix/store/5l9ylxkmnxflln41agad6gkqfz6kc1f6-packages.json.drv'... Going to be running update for following packages: - python3.10-wcwidth-0.2.5 Press Enter key to continue... Running update for: - python3.10-wcwidth-0.2.5: UPDATING ... - python3.10-wcwidth-0.2.5: DONE. Packages updated! [quotedUrls] [quotedUrls] nothing found to replace Diff after rewrites: diff --git a/pkgs/development/python-modules/wcwidth/default.nix b/pkgs/development/python-modules/wcwidth/default.nix index 7b58fb111fb..0cfac081279 100644 --- a/pkgs/development/python-modules/wcwidth/default.nix +++ b/pkgs/development/python-modules/wcwidth/default.nix @@ -6,11 +6,11 @@ buildPythonPackage rec { pname = "wcwidth"; - version = "0.2.5"; + version = "0.2.6"; src = fetchPypi { inherit pname version; - sha256 = "c4d647b99872929fdb7bdcaa4fbe7f01413ed3d98077df798530e5b04f116c83"; + sha256 = "sha256-pSIHgKQE2+M1N4mHCXjkcs/kd3YfBu5VB3JW5QmxVtA="; }; nativeCheckInputs = [ pytestCheckHook ]; No auto update branch exists Old version 0.2.5" not present in staging derivation file with contents: { lib, fetchPypi, buildPythonPackage, pytestCheckHook , isPy3k , backports_functools_lru_cache , setuptools }: buildPythonPackage rec { pname = "wcwidth"; version = "0.2.6"; src = fetchPypi { inherit pname version; hash = "sha256-pSIHgKQE2+M1N4mHCXjkcs/kd3YfBu5VB3JW5QmxVtA="; }; nativeCheckInputs = [ pytestCheckHook ]; propagatedBuildInputs = [ setuptools ] ++ lib.optionals (!isPy3k) [ backports_functools_lru_cache ]; # To prevent infinite recursion with pytest doCheck = false; meta = with lib; { description = "Measures number of Terminal column cells of wide-character codes"; longDescription = '' This API is mainly for Terminal Emulator implementors -- any Python program that attempts to determine the printable width of a string on a Terminal. It is implemented in python (no C library calls) and has no 3rd-party dependencies. ''; homepage = "https://github.com/jquast/wcwidth"; license = licenses.mit; }; }