2020-06-18 07:06:33 +00:00
|
|
|
{ lib, buildPythonPackage, fetchPypi
|
|
|
|
, protobuf
|
|
|
|
, websockets
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "iterm2";
|
2021-12-26 17:43:05 +00:00
|
|
|
version = "1.30";
|
2020-06-18 07:06:33 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-12-26 17:43:05 +00:00
|
|
|
sha256 = "148b32a593f3d932a33daad01fdaa4639918eca74a6e153d9729dd8b3cba3345";
|
2020-06-18 07:06:33 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ protobuf websockets ];
|
|
|
|
|
|
|
|
# The tests require pyobjc. We can't use pyobjc because at
|
|
|
|
# time of writing the pyobjc derivation is disabled on python 3.
|
|
|
|
# iterm2 won't build on python 2 because it depends on websockets
|
|
|
|
# which is disabled below python 3.3.
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
pythonImportsCheck = [ "iterm2" ];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Python interface to iTerm2's scripting API";
|
2020-10-07 09:15:18 +00:00
|
|
|
homepage = "https://github.com/gnachman/iTerm2";
|
2020-06-18 07:06:33 +00:00
|
|
|
license = licenses.gpl2;
|
2020-11-19 00:13:47 +00:00
|
|
|
platforms = platforms.darwin;
|
2020-06-18 07:06:33 +00:00
|
|
|
maintainers = with maintainers; [ jeremyschlatter ];
|
|
|
|
};
|
|
|
|
}
|