Merge pull request #251205 from tjni/libtmux

python310Packages.libtmux: 0.22.1 -> 0.23.0post0

authored by

OTABI Tomoya and committed by
GitHub
b2bbab16 e35f1fd9

+8 -19
+2 -12
pkgs/development/python-modules/libtmux/default.nix
··· 1 1 { lib 2 2 , stdenv 3 3 , fetchFromGitHub 4 - , fetchpatch 5 4 , buildPythonPackage 6 5 , poetry-core 7 6 , pytest-rerunfailures ··· 13 12 14 13 buildPythonPackage rec { 15 14 pname = "libtmux"; 16 - version = "0.22.1"; 15 + version = "0.23.0post0"; 17 16 format = "pyproject"; 18 17 19 18 src = fetchFromGitHub { 20 19 owner = "tmux-python"; 21 20 repo = pname; 22 21 rev = "refs/tags/v${version}"; 23 - hash = "sha256-tz7Pynm/xHx2X3QjXkvFlX6sVlsVKqrsS1CVmqlqfj0="; 22 + hash = "sha256-qk9QYfLVJVtkNgAZ19UziU7metluz10gDs9HbMoqZjo="; 24 23 }; 25 - 26 - patches = [ 27 - # https://github.com/tmux-python/libtmux/pull/493 28 - (fetchpatch { 29 - name = "remove-setuptools.patch"; 30 - url = "https://github.com/tmux-python/libtmux/commit/aa3a1e2015ade73129191ad04146ce52765d478c.patch"; 31 - hash = "sha256-p3KMktd6eG9/lRK+DdBvDtSwhI+sV2RQfBAuElMk8tQ="; 32 - }) 33 - ]; 34 24 35 25 postPatch = '' 36 26 sed -i '/addopts/d' setup.cfg
+6 -7
pkgs/tools/misc/tmuxp/default.nix
··· 2 2 3 3 python3Packages.buildPythonApplication rec { 4 4 pname = "tmuxp"; 5 - version = "1.28.1"; 5 + version = "1.29.0"; 6 + format = "pyproject"; 6 7 7 8 src = fetchPypi { 8 9 inherit pname version; 9 - sha256 = "sha256-sNLqUyas6QY11eW/FhkqB6+u4MTqiY1ixvD3BN69Fic="; 10 + hash = "sha256-MiXG4MVzomyc4LjovPsvhmPngtJv85s6Ypo/Cm2Whho="; 10 11 }; 11 - 12 - # No tests in archive 13 - doCheck = false; 14 - 15 - format = "pyproject"; 16 12 17 13 nativeBuildInputs = [ 18 14 python3Packages.poetry-core ··· 26 22 kaptan 27 23 libtmux 28 24 ]; 25 + 26 + # No tests in archive 27 + doCheck = false; 29 28 30 29 postInstall = '' 31 30 installShellCompletion --cmd tmuxp \