nixpkgs/pkgs/development/python-modules/iterm2/default.nix

32 lines
842 B
Nix
Raw Normal View History

2020-06-12 18:07:25 +01:00
{ lib, buildPythonPackage, fetchPypi
, protobuf
, websockets
}:
buildPythonPackage rec {
pname = "iterm2";
2020-08-16 18:31:05 +01:00
version = "1.16";
2020-06-12 18:07:25 +01:00
src = fetchPypi {
inherit pname version;
2020-08-16 18:31:05 +01:00
sha256 = "8dead057b09ed4ac03c6caae7890489da1d823215ec5166789739ece941bdcbc";
2020-06-12 18:07:25 +01: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";
homepage = "https://github.com/gnachman/iTerm2";
2020-06-12 18:07:25 +01:00
license = licenses.gpl2;
maintainers = with maintainers; [ jeremyschlatter ];
};
}