Commit 6425011e authored by Alyssa Ross's avatar Alyssa Ross
Browse files

update-python-libraries: remove old Nix fallback

Since c0972c16 ("update-python-libraries: add missing dependency nix"),
Nix will be provided as a dependency, so we know we'll always be using
a modern version and no longer need the fallback.
parent 216e5aa7
Loading
Loading
Loading
Loading
+1 −5
Original line number Diff line number Diff line
@@ -342,11 +342,7 @@ def _update_package(path, target):
    text = _replace_value('version', new_version, text)
    # hashes from pypi are 16-bit encoded sha256's, normalize it to sri to avoid merge conflicts
    # sri hashes have been the default format since nix 2.4+
    try:
    sri_hash = subprocess.check_output(["nix", "hash", "to-sri", "--type", "sha256", new_sha256]).decode('utf-8').strip()
    except subprocess.CalledProcessError:
        # nix<2.4 compat
        sri_hash = subprocess.check_output(["nix", "to-sri", "--type", "sha256", new_sha256]).decode('utf-8').strip()


    # fetchers can specify a sha256, or a sri hash