mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
33 lines
876 B
Nix
33 lines
876 B
Nix
{ lib, buildPythonPackage, fetchPypi
|
|
, protobuf
|
|
, websockets
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "iterm2";
|
|
version = "1.18";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "88ca7dd76242205dc82761bf98932a42e6c1ba338cb065f1cc775413ef4e0dc2";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|