My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/iterm2/default.nix

32 lines
862 B

{ lib, buildPythonPackage, fetchPypi
, protobuf
, websockets
}:
buildPythonPackage rec {
pname = "iterm2";
version = "2.1";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-oEXDW+ar3S0gJn2DdaOyq6GDE9dJaghQEpPBCfTL2Kw=";
};
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";
homepage = "https://github.com/gnachman/iTerm2";
license = licenses.gpl2;
platforms = platforms.darwin;
maintainers = with maintainers; [ jeremyschlatter ];
};
}