Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 0f0f3d53df52
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: e06a9d63bcce
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Nov 5, 2020

  1. python37Packages.cupy: 7.7.0 -> 8.1.0

    r-ryantm authored and Jonathan Ringer committed Nov 5, 2020
    Copy the full SHA
    005f545 View commit details
  2. python2Packages.cupy: disable for python2

    Jonathan Ringer committed Nov 5, 2020

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    e06a9d6 View commit details
Showing with 3 additions and 2 deletions.
  1. +3 −2 pkgs/development/python-modules/cupy/default.nix
5 changes: 3 additions & 2 deletions pkgs/development/python-modules/cupy/default.nix
Original file line number Diff line number Diff line change
@@ -6,11 +6,12 @@

buildPythonPackage rec {
pname = "cupy";
version = "7.7.0";
version = "8.1.0";
disabled = !isPy3k;

src = fetchPypi {
inherit pname version;
sha256 = "b4032adf839f63bab7fc9f3e7066ef86abe0928e834aa5d132e4e7ce907951ed";
sha256 = "4dfa4a0cd0a752d980347c816cab2169f0938c1d37275311810396dcf3c27912";
};

checkInputs = [