f7e390e6d4
Related: -9fc5e7e473
-593e11fd94
-508ae42a0f
Since the last time I ran this script, the Repology API changed, so I had to adapt the script used in the previous PR. The new API should be more robust, so overall this is a positive (no more grepping the error messages for our relevant data but just a nice json structure). Here's the new script I used: ```sh curl https://repology.org/api/v1/repository/nix_unstable/problems \ | jq -r '.[] | select(.type == "homepage_permanent_https_redirect") | .data | "s@\(.url)@\(.target)@"' \ | sort | uniq | tee script.sed find -name '*.nix' | xargs -P4 -- sed -f script.sed -i ``` I will also add this script to `maintainers/scripts`.
32 lines
842 B
Nix
32 lines
842 B
Nix
{ 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 = "https://github.com/gnachman/iTerm2";
|
|
license = licenses.gpl2;
|
|
maintainers = with maintainers; [ jeremyschlatter ];
|
|
};
|
|
}
|