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 { lib 2 , stdenv 3 , fetchFromGitHub 4 - , fetchpatch 5 , buildPythonPackage 6 , poetry-core 7 , pytest-rerunfailures ··· 13 14 buildPythonPackage rec { 15 pname = "libtmux"; 16 - version = "0.22.1"; 17 format = "pyproject"; 18 19 src = fetchFromGitHub { 20 owner = "tmux-python"; 21 repo = pname; 22 rev = "refs/tags/v${version}"; 23 - hash = "sha256-tz7Pynm/xHx2X3QjXkvFlX6sVlsVKqrsS1CVmqlqfj0="; 24 }; 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 35 postPatch = '' 36 sed -i '/addopts/d' setup.cfg
··· 1 { lib 2 , stdenv 3 , fetchFromGitHub 4 , buildPythonPackage 5 , poetry-core 6 , pytest-rerunfailures ··· 12 13 buildPythonPackage rec { 14 pname = "libtmux"; 15 + version = "0.23.0post0"; 16 format = "pyproject"; 17 18 src = fetchFromGitHub { 19 owner = "tmux-python"; 20 repo = pname; 21 rev = "refs/tags/v${version}"; 22 + hash = "sha256-qk9QYfLVJVtkNgAZ19UziU7metluz10gDs9HbMoqZjo="; 23 }; 24 25 postPatch = '' 26 sed -i '/addopts/d' setup.cfg
+6 -7
pkgs/tools/misc/tmuxp/default.nix
··· 2 3 python3Packages.buildPythonApplication rec { 4 pname = "tmuxp"; 5 - version = "1.28.1"; 6 7 src = fetchPypi { 8 inherit pname version; 9 - sha256 = "sha256-sNLqUyas6QY11eW/FhkqB6+u4MTqiY1ixvD3BN69Fic="; 10 }; 11 - 12 - # No tests in archive 13 - doCheck = false; 14 - 15 - format = "pyproject"; 16 17 nativeBuildInputs = [ 18 python3Packages.poetry-core ··· 26 kaptan 27 libtmux 28 ]; 29 30 postInstall = '' 31 installShellCompletion --cmd tmuxp \
··· 2 3 python3Packages.buildPythonApplication rec { 4 pname = "tmuxp"; 5 + version = "1.29.0"; 6 + format = "pyproject"; 7 8 src = fetchPypi { 9 inherit pname version; 10 + hash = "sha256-MiXG4MVzomyc4LjovPsvhmPngtJv85s6Ypo/Cm2Whho="; 11 }; 12 13 nativeBuildInputs = [ 14 python3Packages.poetry-core ··· 22 kaptan 23 libtmux 24 ]; 25 + 26 + # No tests in archive 27 + doCheck = false; 28 29 postInstall = '' 30 installShellCompletion --cmd tmuxp \