nixpkgs/pkgs/tools/misc/tmuxp/default.nix

33 lines
622 B
Nix
Raw Normal View History

2021-06-30 06:41:25 +03:00
{ lib, python3Packages }:
2016-08-01 17:01:02 +03:00
2021-06-30 06:41:25 +03:00
let
pypkgs = python3Packages;
2016-08-01 17:01:02 +03:00
2021-06-30 06:41:25 +03:00
in
pypkgs.buildPythonApplication rec {
2018-01-20 15:14:07 +03:00
pname = "tmuxp";
2021-06-30 06:41:25 +03:00
version = "1.9.2";
2016-08-01 17:01:02 +03:00
2021-06-30 06:41:25 +03:00
src = pypkgs.fetchPypi {
2018-01-20 15:14:07 +03:00
inherit pname version;
2021-06-30 06:41:25 +03:00
sha256 = "sha256-3RlTbIq7UGvEESMvncq97bhjJw8O4m+0aFVZgBQOwkM=";
2016-08-01 17:01:02 +03:00
};
2018-01-20 15:14:07 +03:00
# No tests in archive
doCheck = false;
2021-06-30 06:41:25 +03:00
propagatedBuildInputs = with pypkgs; [
click
colorama
kaptan
libtmux
2016-08-01 17:01:02 +03:00
];
meta = with lib; {
2016-08-01 17:01:02 +03:00
description = "Manage tmux workspaces from JSON and YAML";
homepage = "https://tmuxp.git-pull.com/";
2016-08-01 17:01:02 +03:00
license = licenses.bsd3;
2021-06-30 06:41:25 +03:00
maintainers = with maintainers; [ peterhoeg ];
2016-08-01 17:01:02 +03:00
};
}