33 lines
622 B
Nix
33 lines
622 B
Nix
{ lib, python3Packages }:
|
|
|
|
let
|
|
pypkgs = python3Packages;
|
|
|
|
in
|
|
pypkgs.buildPythonApplication rec {
|
|
pname = "tmuxp";
|
|
version = "1.9.2";
|
|
|
|
src = pypkgs.fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "sha256-3RlTbIq7UGvEESMvncq97bhjJw8O4m+0aFVZgBQOwkM=";
|
|
};
|
|
|
|
# No tests in archive
|
|
doCheck = false;
|
|
|
|
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; [ peterhoeg ];
|
|
};
|
|
}
|