567e8dfd8e
This commit was created by a combination of scripts and tools: - an ast-grep script to prefix things in meta with `lib.`, - a modified nixf-diagnose / nixf combination to remove unused `with lib;`, and - regular nixfmt. Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
40 lines
907 B
Nix
40 lines
907 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
protobuf,
|
|
websockets,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "iterm2";
|
|
version = "2.10";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-jAz5X/yp8b90CYg2GN7uZqzXPGOSkiLiNDV4DcxRaGk=";
|
|
};
|
|
|
|
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 = {
|
|
description = "Python interface to iTerm2's scripting API";
|
|
homepage = "https://github.com/gnachman/iTerm2";
|
|
license = lib.licenses.gpl2;
|
|
platforms = lib.platforms.darwin;
|
|
maintainers = with lib.maintainers; [ jeremyschlatter ];
|
|
};
|
|
}
|