3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #186381 from r-ryantm/auto-update/python3.10-libtmux

python310Packages.libtmux: 0.11.0 -> 0.13.0
This commit is contained in:
Mario Rodas 2022-08-13 02:27:28 -05:00 committed by GitHub
commit d9c0b7ace6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 32 additions and 11 deletions

View file

@ -1,4 +1,5 @@
{ lib
, stdenv
, fetchFromGitHub
, buildPythonPackage
, poetry-core
@ -9,14 +10,14 @@
buildPythonPackage rec {
pname = "libtmux";
version = "0.11.0";
version = "0.13.0";
format = "pyproject";
src = fetchFromGitHub {
owner = "tmux-python";
repo = pname;
rev = "v${version}";
hash = "sha256-QbKqS40la6UGZENyGEw5kXigzexp3q7ff43fKlQ9GqE=";
rev = "refs/tags/v${version}";
hash = "sha256-u08lxVMuyO5CwFbmxn69QqdSWcvGaSMZgizRJlsHa0k=";
};
nativeBuildInputs = [
@ -30,10 +31,15 @@ buildPythonPackage rec {
pytestCheckHook
];
pytestFlagsArray = lib.optionals stdenv.isDarwin [ "--ignore=tests/test_test.py" ];
pythonImportsCheck = [ "libtmux" ];
meta = with lib; {
description = "Scripting library for tmux";
homepage = "https://libtmux.readthedocs.io/";
license = licenses.bsd3;
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; [ ];
};
}

View file

@ -1,4 +1,4 @@
{ lib, python3Packages }:
{ lib, python3Packages, installShellFiles }:
let
pypkgs = python3Packages;
@ -6,16 +6,23 @@ let
in
pypkgs.buildPythonApplication rec {
pname = "tmuxp";
version = "1.11.0";
version = "1.12.1";
src = pypkgs.fetchPypi {
inherit pname version;
sha256 = "sha256-N5kZ+e17ZgLOCvV/lcT/hdG1VNqLxh98QOQyM0BmZCA=";
sha256 = "078624c5ac7aa4142735f856fadb9281fcebb10e6b98d1be2b2f2bbd106613b9";
};
postPatch = ''
substituteInPlace setup.py \
--replace "libtmux>=0.12.0,<0.13.0" "libtmux"
'';
# No tests in archive
doCheck = false;
nativeBuildInputs = [ installShellFiles ];
propagatedBuildInputs = with pypkgs; [
click
colorama
@ -23,10 +30,18 @@ pypkgs.buildPythonApplication rec {
libtmux
];
postInstall = ''
installShellCompletion --cmd tmuxp \
--bash <(_TMUXP_COMPLETE=bash_source $out/bin/tmuxp) \
--fish <(_TMUXP_COMPLETE=fish_source $out/bin/tmuxp) \
--zsh <(_TMUXP_COMPLETE=zsh_source $out/bin/tmuxp)
'';
meta = with lib; {
description = "Manage tmux workspaces from JSON and YAML";
description = "tmux session manager";
homepage = "https://tmuxp.git-pull.com/";
license = licenses.bsd3;
changelog = "https://github.com/tmux-python/tmuxp/raw/v${version}/CHANGES";
license = licenses.mit;
maintainers = with maintainers; [ peterhoeg ];
};
}