python310Packages.urwid 0 -> 1 attrpath: python310Packages.urwid Checking auto update branch... [version] [version] generic version rewriter does not support multiple hashes [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] Going to be running update for following packages: - python3.10-urwid-2.1.2 Press Enter key to continue... Running update for: - python3.10-urwid-2.1.2: UPDATING ... - python3.10-urwid-2.1.2: DONE. Packages updated! [quotedUrls] [quotedUrls] nothing found to replace Diff after rewrites: diff --git a/pkgs/development/python-modules/urwid/default.nix b/pkgs/development/python-modules/urwid/default.nix index 014382b21501..8fb5b825c9d0 100644 --- a/pkgs/development/python-modules/urwid/default.nix +++ b/pkgs/development/python-modules/urwid/default.nix @@ -8,12 +8,12 @@ buildPythonPackage rec { pname = "urwid"; - version = "2.1.2"; + version = "2.2.2"; format = "setuptools"; src = fetchPypi { inherit pname version; - sha256 = "588bee9c1cb208d0906a9f73c613d2bd32c3ed3702012f51efe318a3f2127eae"; + sha256 = "sha256-X4OyQcHL8+xsS4xrkIEn4MmtdIHF0xRWOVJBV/xOF0Q="; }; patches = [ No auto update branch exists Old version 2.1.2" not present in staging derivation file with contents: { lib , buildPythonPackage , fetchPypi # build-system , setuptools , setuptools-scm , wheel # tests , glibcLocales , pytestCheckHook }: buildPythonPackage rec { pname = "urwid"; version = "2.2.1"; format = "pyproject"; src = fetchPypi { inherit pname version; hash = "sha256-4zkRqxjyxz/dvpvyFtAh504gstWqm+MEA8WPVRMbuKE="; }; postPatch = '' sed -i '/addopts =/d' pyproject.toml ''; nativeBuildInputs = [ setuptools setuptools-scm wheel ]; nativeCheckInputs = [ glibcLocales pytestCheckHook ]; env.LC_ALL = "en_US.UTF8"; disabledTestPaths = [ # expect call hangs "urwid/tests/test_vterm.py" ]; pythonImportsCheck = [ "urwid" ]; meta = with lib; { changelog = "https://github.com/urwid/urwid/releases/tag/${version}"; description = "A full-featured console (xterm et al.) user interface library"; downloadPage = "https://github.com/urwid/urwid"; homepage = "https://urwid.org/"; license = licenses.lgpl21Plus; maintainers = with maintainers; [ ]; }; }