Commit fba867a9 authored by Thomas Watson's avatar Thomas Watson
Browse files

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
parent 2cec04c8
Loading
Loading
Loading
Loading
+2 −5
Original line number Diff line number Diff line
@@ -9,12 +9,12 @@ let
  inherit (cudaPackages) cudatoolkit cudnn cutensor nccl;
in buildPythonPackage rec {
  pname = "cupy";
  version = "11.1.0";
  version = "11.2.0";
  disabled = !isPy3k;

  src = fetchPypi {
    inherit pname version;
    sha256 = "sha256-4TtvmQrd172HCQWvQp+tUQhNCFf4YA3TIGod9aRoTt0=";
    sha256 = "sha256-wzNh8RejR6Y/aZbql0RtF/HAOPGh9TPlAkZCNQdpI+I=";
  };

  # See https://docs.cupy.dev/en/v10.2.0/reference/environment.html. Seting both
@@ -70,8 +70,5 @@ in buildPythonPackage rec {
    license = licenses.mit;
    platforms = [ "x86_64-linux" ];
    maintainers = with maintainers; [ hyphon81 ];

    # See https://github.com/NixOS/nixpkgs/pull/179912#issuecomment-1206265922.
    broken = true;
  };
}