depot/third_party/nixpkgs/pkgs/tools/misc/tmuxp/default.nix
Default email 634fe97655 Project import generated by Copybara.
GitOrigin-RevId: 09c38c29f2c719cd76ca17a596c2fdac9e186ceb
2021-07-03 00:11:41 -03:00

32 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 ];
};
}