From c8ce2b7862eb273ed81cd399490e0536b2965a20 Mon Sep 17 00:00:00 2001 From: Benedikt Peetz Date: Fri, 14 Feb 2025 16:40:16 +0100 Subject: fix(package/blake3): Migrate to the new `fetchCargoVendor` fetcher This is necessary, because the old `fetchCargoTarball` fetcher, has become not reproducible because of `cargo` changes. --- package/blake3/blake3.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package/blake3/blake3.nix b/package/blake3/blake3.nix index 74a393b..3965112 100644 --- a/package/blake3/blake3.nix +++ b/package/blake3/blake3.nix @@ -27,9 +27,9 @@ python3Packages.buildPythonPackage rec { ./add_cargo_lock.patch ]; - cargoDeps = rustPlatform.fetchCargoTarball { + cargoDeps = rustPlatform.fetchCargoVendor { inherit src patches; - hash = "sha256-GwyGSdmJTgsHWfcS2n2FCFrlwRcuANM8/WteYTTyY6o="; + hash = "sha256-Woz0f869td1SyRaVw6qVpBW4aJC/5M/tkmxgLR6HDN4="; }; format = "pyproject"; -- cgit 1.4.1