Merge pull request #213891 from otavio/topic/new-tmuxp

tmuxp: 1.23.0 -> 1.27.0

authored by superherointj and committed by GitHub 8fc4e605 325aba25

+15 -8
+13 -6
pkgs/development/python-modules/libtmux/default.nix
··· 7 , pytestCheckHook 8 , procps 9 , tmux 10 }: 11 12 buildPythonPackage rec { 13 pname = "libtmux"; 14 - version = "0.18.1"; 15 format = "pyproject"; 16 17 src = fetchFromGitHub { 18 owner = "tmux-python"; 19 repo = pname; 20 rev = "refs/tags/v${version}"; 21 - hash = "sha256-OhNyJcnxjbyP/Kpt70qLv3ZtZvXXVTWEMcjv/pa50/4="; 22 }; 23 24 postPatch = '' ··· 32 nativeCheckInputs = [ 33 procps 34 tmux 35 pytest-rerunfailures 36 pytestCheckHook 37 ]; 38 39 - pytestFlagsArray = [ 40 - "tests" 41 - ] ++ lib.optionals stdenv.isDarwin [ 42 - "--ignore=tests/test_test.py" 43 ]; 44 45 pythonImportsCheck = [ "libtmux" ];
··· 7 , pytestCheckHook 8 , procps 9 , tmux 10 + , ncurses 11 }: 12 13 buildPythonPackage rec { 14 pname = "libtmux"; 15 + version = "0.21.0"; 16 format = "pyproject"; 17 18 src = fetchFromGitHub { 19 owner = "tmux-python"; 20 repo = pname; 21 rev = "refs/tags/v${version}"; 22 + hash = "sha256-nZPVS3jNz2e2LTlWiSz1fN7MzqJs/CqtAt6UVZaPPTY="; 23 }; 24 25 postPatch = '' ··· 33 nativeCheckInputs = [ 34 procps 35 tmux 36 + ncurses 37 pytest-rerunfailures 38 pytestCheckHook 39 ]; 40 41 + pytestFlagsArray = [ "tests" ]; 42 + 43 + disabledTests = [ 44 + # Fail with: 'no server running on /tmp/tmux-1000/libtmux_test8sorutj1'. 45 + "test_new_session_width_height" 46 + ]; 47 + 48 + disabledTestPaths = lib.optionals stdenv.isDarwin [ 49 + "test_test.py" 50 ]; 51 52 pythonImportsCheck = [ "libtmux" ];
+2 -2
pkgs/tools/misc/tmuxp/default.nix
··· 6 in 7 pypkgs.buildPythonApplication rec { 8 pname = "tmuxp"; 9 - version = "1.23.0"; 10 11 src = pypkgs.fetchPypi { 12 inherit pname version; 13 - sha256 = "Ix/43QFOa0kCP5xndszFGk0p12w/t/z+fVcYRIj9y0s="; 14 }; 15 16 # No tests in archive
··· 6 in 7 pypkgs.buildPythonApplication rec { 8 pname = "tmuxp"; 9 + version = "1.27.0"; 10 11 src = pypkgs.fetchPypi { 12 inherit pname version; 13 + sha256 = "sha256-QAk+rcNYjhAgkJX2fa0bl3dHrB4yyYQ/oNlUX3IQMR8="; 14 }; 15 16 # No tests in archive