nixpkgs/pkgs/tools/misc/tmuxp/default.nix
R. RyanTM d41f80f857 tmuxp: 1.5.0a1 -> 1.5.1
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/tmuxp/versions
2019-03-02 21:11:15 -08:00

37 lines
715 B
Nix

{ stdenv, python }:
with python.pkgs;
buildPythonApplication rec {
pname = "tmuxp";
version = "1.5.1";
src = fetchPypi {
inherit pname version;
sha256 = "1s2jmi46z1as5f7124zxjd88crbgb427jqf9987nz0csbpbb12qa";
};
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
];
meta = with stdenv.lib; {
description = "Manage tmux workspaces from JSON and YAML";
homepage = https://tmuxp.git-pull.com/;
license = licenses.bsd3;
maintainers = with maintainers; [ jgeerds ];
};
}