nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

python3Packages.accelerate: 1.7.0 -> 1.9.0 (#420124)

authored by

Weijia Wang and committed by
GitHub
421ddf0c 2e1bfd5e

+3 -3
+3 -3
pkgs/development/python-modules/accelerate/default.nix
··· 33 33 34 34 buildPythonPackage rec { 35 35 pname = "accelerate"; 36 - version = "1.7.0"; 36 + version = "1.9.0"; 37 37 pyproject = true; 38 38 39 39 src = fetchFromGitHub { 40 40 owner = "huggingface"; 41 41 repo = "accelerate"; 42 42 tag = "v${version}"; 43 - hash = "sha256-nZoa2Uwd8cHl0H4LM8swHjce7HktpGdcD+6ykfoQ90M="; 43 + hash = "sha256-h1XfBG7M8aAN9W09RgIowJ2vgWAjWbUnV1KBXa5aGJU="; 44 44 }; 45 45 46 46 buildInputs = [ llvmPackages.openmp ]; ··· 172 172 meta = { 173 173 homepage = "https://huggingface.co/docs/accelerate"; 174 174 description = "Simple way to train and use PyTorch models with multi-GPU, TPU, mixed-precision"; 175 - changelog = "https://github.com/huggingface/accelerate/releases/tag/v${version}"; 175 + changelog = "https://github.com/huggingface/accelerate/releases/tag/${src.tag}"; 176 176 license = lib.licenses.asl20; 177 177 maintainers = with lib.maintainers; [ bcdarwin ]; 178 178 mainProgram = "accelerate";