diff options
| author | Alyssa Ross <hi@alyssa.is> | 2025-01-26 15:44:37 +0100 |
|---|---|---|
| committer | Alyssa Ross <hi@alyssa.is> | 2025-01-26 15:44:37 +0100 |
| commit | 9bb655a235e9d374f442c7a1a3551054df37ca39 (patch) | |
| tree | ff7d13c1fed574d856410602ae844b7e694883cb /pkgs/development/python-modules/datafusion | |
| parent | chirp: 0.4.0-unstable-2025-01-12 -> 0.4.0-unstable-2025-01-22 (#376949) (diff) | |
| download | nixpkgs-9bb655a235e9d374f442c7a1a3551054df37ca39.tar.gz | |
python3Packages.datafusion: fetchCargoTarball -> fetchCargoVendor
Cargo 1.84.0 seems to have changed the output format of cargo vendor
again, once again invalidating fetchCargoTarball FOD hashes. It's
time to fix this once and for all, switching across the board to
fetchCargoVendor, which is not dependent on cargo vendor's output
format.
Diffstat (limited to 'pkgs/development/python-modules/datafusion')
| -rw-r--r-- | pkgs/development/python-modules/datafusion/default.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/datafusion/default.nix b/pkgs/development/python-modules/datafusion/default.nix index c80baeef6e53..46d27a50e93e 100644 --- a/pkgs/development/python-modules/datafusion/default.nix +++ b/pkgs/development/python-modules/datafusion/default.nix @@ -47,10 +47,10 @@ buildPythonPackage rec { hash = "sha256-5WOSlx4XW9zO6oTY16lWQElShLv0ubflVPfSSEGrFgg="; }; - cargoDeps = rustPlatform.fetchCargoTarball { + cargoDeps = rustPlatform.fetchCargoVendor { name = "datafusion-cargo-deps"; inherit src; - hash = "sha256-hN03tbnH77VsMDxSMddMHIH00t7lUs5h8rTHbiMIExw="; + hash = "sha256-xUpchV4UFEX1HkCpClOwxnEfGLVlOIX4UmzYKiUth9U="; }; nativeBuildInputs = with rustPlatform; [ |
