tmuxp: 1.7.2 -> 1.9.2
This commit is contained in:
parent
4ff1a6f91a
commit
9a53c8f4f2
1 changed files with 14 additions and 18 deletions
|
@ -1,36 +1,32 @@
|
|||
{ lib, python }:
|
||||
{ lib, python3Packages }:
|
||||
|
||||
with python.pkgs;
|
||||
let
|
||||
pypkgs = python3Packages;
|
||||
|
||||
buildPythonApplication rec {
|
||||
in
|
||||
pypkgs.buildPythonApplication rec {
|
||||
pname = "tmuxp";
|
||||
version = "1.7.2";
|
||||
version = "1.9.2";
|
||||
|
||||
src = fetchPypi {
|
||||
src = pypkgs.fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "14296b62db260420d4600dcd805408ea908b3a78d4ea0a6a403d092fdbf6d075";
|
||||
sha256 = "sha256-3RlTbIq7UGvEESMvncq97bhjJw8O4m+0aFVZgBQOwkM=";
|
||||
};
|
||||
|
||||
postPatch = ''
|
||||
sed -i 's/==.*$//' requirements/base.txt requirements/test.txt
|
||||
'';
|
||||
|
||||
checkInputs = [
|
||||
pytest
|
||||
pytest-rerunfailures
|
||||
];
|
||||
|
||||
# No tests in archive
|
||||
doCheck = false;
|
||||
|
||||
propagatedBuildInputs = [
|
||||
click colorama kaptan libtmux
|
||||
propagatedBuildInputs = with pypkgs; [
|
||||
click
|
||||
colorama
|
||||
kaptan
|
||||
libtmux
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Manage tmux workspaces from JSON and YAML";
|
||||
homepage = "https://tmuxp.git-pull.com/";
|
||||
license = licenses.bsd3;
|
||||
maintainers = with maintainers; [ ];
|
||||
maintainers = with maintainers; [ peterhoeg ];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue