9 buildPythonPackage rec {
12 format = "setuptools";
15 inherit pname version;
16 hash = "sha256-9vC+xGwyzsr3vn/YIpbsRpfUvyEB8MSqskzBI5kfojA=";
19 propagatedBuildInputs = [
24 # The tests require pyobjc. We can't use pyobjc because at
25 # time of writing the pyobjc derivation is disabled on python 3.
26 # iterm2 won't build on python 2 because it depends on websockets
27 # which is disabled below python 3.3.
30 pythonImportsCheck = [ "iterm2" ];
33 description = "Python interface to iTerm2's scripting API";
34 homepage = "https://github.com/gnachman/iTerm2";
35 license = licenses.gpl2;
36 platforms = platforms.darwin;
37 maintainers = with maintainers; [ jeremyschlatter ];