2018-07-20 17:44:44 -07:00
|
|
|
{ stdenv, python }:
|
2016-08-01 07:01:02 -07:00
|
|
|
|
2018-01-20 04:14:07 -08:00
|
|
|
with python.pkgs;
|
2016-08-01 07:01:02 -07:00
|
|
|
|
2018-01-20 04:14:07 -08:00
|
|
|
buildPythonApplication rec {
|
|
|
|
pname = "tmuxp";
|
2020-07-30 08:01:15 -07:00
|
|
|
version = "1.5.5";
|
2016-08-01 07:01:02 -07:00
|
|
|
|
2018-01-20 04:14:07 -08:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-07-30 08:01:15 -07:00
|
|
|
sha256 = "1jbziyqggbfd5m884lg00h0zi99c6cvjxkl4jzr34c4affr295yd";
|
2016-08-01 07:01:02 -07:00
|
|
|
};
|
|
|
|
|
2018-01-20 04:14:07 -08:00
|
|
|
postPatch = ''
|
2017-06-01 14:32:05 -07:00
|
|
|
sed -i 's/==.*$//' requirements/base.txt requirements/test.txt
|
2016-09-10 03:20:39 -07:00
|
|
|
'';
|
|
|
|
|
2018-01-20 04:14:07 -08:00
|
|
|
checkInputs = [
|
|
|
|
pytest
|
2016-09-10 03:20:39 -07:00
|
|
|
pytest-rerunfailures
|
|
|
|
];
|
2016-09-08 04:48:45 -07:00
|
|
|
|
2018-01-20 04:14:07 -08:00
|
|
|
# No tests in archive
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
2016-08-01 07:01:02 -07:00
|
|
|
click colorama kaptan libtmux
|
|
|
|
];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Manage tmux workspaces from JSON and YAML";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://tmuxp.git-pull.com/";
|
2016-08-01 07:01:02 -07:00
|
|
|
license = licenses.bsd3;
|
2019-03-12 15:45:33 -07:00
|
|
|
maintainers = with maintainers; [ ];
|
2016-08-01 07:01:02 -07:00
|
|
|
};
|
|
|
|
}
|