blob: 61e835890c325bea6f0a3d971e0e03c085b0050c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
{
lib,
buildPythonPackage,
fetchPypi,
protobuf,
websockets,
}:
buildPythonPackage rec {
pname = "iterm2";
version = "2.7";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-9vC+xGwyzsr3vn/YIpbsRpfUvyEB8MSqskzBI5kfojA=";
};
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 ];
};
}
|