lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

python3Packages.cupy: 11.1.0 -> 11.2.0, mark as not broken

cupy now builds and appears to pass basic smoke tests with an upgraded
version of cutensor

+2 -5
+2 -5
pkgs/development/python-modules/cupy/default.nix
··· 9 9 inherit (cudaPackages) cudatoolkit cudnn cutensor nccl; 10 10 in buildPythonPackage rec { 11 11 pname = "cupy"; 12 - version = "11.1.0"; 12 + version = "11.2.0"; 13 13 disabled = !isPy3k; 14 14 15 15 src = fetchPypi { 16 16 inherit pname version; 17 - sha256 = "sha256-4TtvmQrd172HCQWvQp+tUQhNCFf4YA3TIGod9aRoTt0="; 17 + sha256 = "sha256-wzNh8RejR6Y/aZbql0RtF/HAOPGh9TPlAkZCNQdpI+I="; 18 18 }; 19 19 20 20 # See https://docs.cupy.dev/en/v10.2.0/reference/environment.html. Seting both ··· 70 70 license = licenses.mit; 71 71 platforms = [ "x86_64-linux" ]; 72 72 maintainers = with maintainers; [ hyphon81 ]; 73 - 74 - # See https://github.com/NixOS/nixpkgs/pull/179912#issuecomment-1206265922. 75 - broken = true; 76 73 }; 77 74 }