From dd94013685279f44ad1024cea68ab21c1f84da5e Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Mon, 25 Aug 2025 00:34:20 +0200 Subject: [PATCH] python3Packages.bitsandbytes: 0.46.1 -> 0.47.0 Diff: https://github.com/bitsandbytes-foundation/bitsandbytes/compare/0.46.1...0.47.0 Changelog: https://github.com/bitsandbytes-foundation/bitsandbytes/releases/tag/0.47.0 --- .../python-modules/bitsandbytes/default.nix | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/bitsandbytes/default.nix b/pkgs/development/python-modules/bitsandbytes/default.nix index 6dd1b0bd30a5..a70ed26e6137 100644 --- a/pkgs/development/python-modules/bitsandbytes/default.nix +++ b/pkgs/development/python-modules/bitsandbytes/default.nix @@ -5,13 +5,18 @@ buildPythonPackage, fetchFromGitHub, cmake, + + # build-system + scikit-build-core, setuptools, + + # dependencies scipy, }: let pname = "bitsandbytes"; - version = "0.46.1"; + version = "0.47.0"; inherit (torch) cudaPackages cudaSupport; inherit (cudaPackages) cudaMajorMinorVersion; @@ -57,7 +62,7 @@ buildPythonPackage { owner = "bitsandbytes-foundation"; repo = "bitsandbytes"; tag = version; - hash = "sha256-CAGKp8aFp1GjJ1uR+O1Ptxr8wfz1zECCEWhWMYs3zEQ="; + hash = "sha256-iUAeiNbPa3Q5jJ4lK2G0WvTKuipb0zO1mNe+wcRdnqs="; }; # By default, which library is loaded depends on the result of `torch.cuda.is_available()`. @@ -82,6 +87,7 @@ buildPythonPackage { ]; build-system = [ + scikit-build-core setuptools ];