aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/python-modules/iterm2/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/python-modules/iterm2/default.nix')
-rw-r--r--nixpkgs/pkgs/development/python-modules/iterm2/default.nix31
1 files changed, 31 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/python-modules/iterm2/default.nix b/nixpkgs/pkgs/development/python-modules/iterm2/default.nix
new file mode 100644
index 00000000000..4d4cf95fc88
--- /dev/null
+++ b/nixpkgs/pkgs/development/python-modules/iterm2/default.nix
@@ -0,0 +1,31 @@
+{ lib, buildPythonPackage, fetchPypi
+, protobuf
+, websockets
+}:
+
+buildPythonPackage rec {
+ pname = "iterm2";
+ version = "1.16";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "8dead057b09ed4ac03c6caae7890489da1d823215ec5166789739ece941bdcbc";
+ };
+
+ 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 = "http://github.com/gnachman/iTerm2";
+ license = licenses.gpl2;
+ maintainers = with maintainers; [ jeremyschlatter ];
+ };
+}