python310Packages.iterm2 0 -> 1 attrpath: python310Packages.iterm2 Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/3nfrka74v231wyhfhmwlj9d7lrcz2vvh-packages.json.drv building '/nix/store/3nfrka74v231wyhfhmwlj9d7lrcz2vvh-packages.json.drv'... Going to be running update for following packages: - python3.10-iterm2-2.6 Press Enter key to continue... Running update for: - python3.10-iterm2-2.6: UPDATING ... - python3.10-iterm2-2.6: DONE. Packages updated! [quotedUrls] [quotedUrls] nothing found to replace Diff after rewrites: diff --git a/pkgs/development/python-modules/iterm2/default.nix b/pkgs/development/python-modules/iterm2/default.nix index 96c8fcfb3c1..eff730e0ad8 100644 --- a/pkgs/development/python-modules/iterm2/default.nix +++ b/pkgs/development/python-modules/iterm2/default.nix @@ -5,11 +5,11 @@ buildPythonPackage rec { pname = "iterm2"; - version = "2.6"; + version = "2.7"; src = fetchPypi { inherit pname version; - sha256 = "sha256-rKvnr0C48mTkjbGyHhvNzgJ97p5mJ7F4wU8ZMPYV/rM="; + sha256 = "sha256-9vC+xGwyzsr3vn/YIpbsRpfUvyEB8MSqskzBI5kfojA="; }; propagatedBuildInputs = [ protobuf websockets ]; No auto update branch exists Old version 2.6" not present in staging derivation file with contents: { lib, buildPythonPackage, fetchPypi , protobuf , websockets }: buildPythonPackage rec { pname = "iterm2"; version = "2.7"; src = fetchPypi { inherit pname version; sha256 = "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 ]; }; }