python310Packages.libtmux 0 -> 1 attrpath: python310Packages.libtmux 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 [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] Going to be running update for following packages: - python3.10-libtmux-0.23.2 Press Enter key to continue... Running update for: - python3.10-libtmux-0.23.2: UPDATING ... - python3.10-libtmux-0.23.2: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/libtmux/default.nix b/pkgs/development/python-modules/libtmux/default.nix index f94608c1b452..61d768070596 100644 --- a/pkgs/development/python-modules/libtmux/default.nix +++ b/pkgs/development/python-modules/libtmux/default.nix @@ -12,14 +12,14 @@ buildPythonPackage rec { pname = "libtmux"; - version = "0.23.2"; + version = "0.25.0"; format = "pyproject"; src = fetchFromGitHub { owner = "tmux-python"; repo = pname; rev = "refs/tags/v${version}"; - hash = "sha256-W1gBhukBooPo8uej6i8i3UxLuDeBBeSX5xU50SyjjlA="; + hash = "sha256-cAogRdhJdXC0lMQRlWwSHQj205mG9uwd1XkFJYsAetA="; }; postPatch = '' No auto update branch exists Old version 0.23.2" not present in staging derivation file with contents: { lib , stdenv , fetchFromGitHub , buildPythonPackage , poetry-core , pytest-rerunfailures , pytestCheckHook , procps , tmux , ncurses }: buildPythonPackage rec { pname = "libtmux"; version = "0.25.0"; format = "pyproject"; src = fetchFromGitHub { owner = "tmux-python"; repo = pname; rev = "refs/tags/v${version}"; hash = "sha256-cAogRdhJdXC0lMQRlWwSHQj205mG9uwd1XkFJYsAetA="; }; postPatch = '' sed -i '/addopts/d' pyproject.toml ''; nativeBuildInputs = [ poetry-core ]; nativeCheckInputs = [ procps tmux ncurses pytest-rerunfailures pytestCheckHook ]; pytestFlagsArray = [ "tests" ]; disabledTests = [ # Fail with: 'no server running on /tmp/tmux-1000/libtmux_test8sorutj1'. "test_new_session_width_height" # Assertion error "test_capture_pane_start" ] ++ lib.optionals stdenv.isDarwin [ # tests/test_pane.py:113: AssertionError "test_capture_pane_start" ]; disabledTestPaths = lib.optionals stdenv.isDarwin [ "tests/test_test.py" "tests/legacy_api/test_test.py" ]; pythonImportsCheck = [ "libtmux" ]; meta = with lib; { description = "Typed scripting library / ORM / API wrapper for tmux"; homepage = "https://libtmux.git-pull.com/"; changelog = "https://github.com/tmux-python/libtmux/raw/v${version}/CHANGES"; license = licenses.mit; maintainers = with maintainers; [ ]; }; }