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