tmuxp: 1.47.0 -> 1.49.0

Changelog: https://github.com/tmux-python/tmuxp/raw/v1.49.0/CHANGES
This commit is contained in:
Fabian Affolter 2024-11-26 21:21:11 +01:00
parent 00b2dcce83
commit 73ff1cbe89

View File

@ -1,25 +1,28 @@
{ lib, python3Packages, fetchPypi, installShellFiles }:
{
lib,
fetchPypi,
installShellFiles,
python3Packages,
}:
let
python3Packages.buildPythonApplication rec {
pname = "tmuxp";
version = "1.47.0";
hash = "sha256-HYY6CEUPpZVvVK9kV4Ehw4wGk5YfIVSkZ0+qqf6Nz4c=";
in
python3Packages.buildPythonApplication {
inherit pname version;
version = "1.49.0";
pyproject = true;
src = fetchPypi {
inherit pname version hash;
inherit pname version;
hash = "sha256-Fip2HnwIa03khiYlL5FkhVo84oS0OSD9f79bEFLBoNc=";
};
nativeBuildInputs = [
python3Packages.poetry-core
python3Packages.shtab
installShellFiles
build-system = with python3Packages; [
hatchling
shtab
];
propagatedBuildInputs = with python3Packages; [
nativeBuildInputs = [ installShellFiles ];
dependencies = with python3Packages; [
colorama
libtmux
pyyaml