mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
python3Packages.cupy: fix build
This commit is contained in:
parent
cc12a29221
commit
4cbce55388
1 changed files with 5 additions and 1 deletions
|
@ -1958,7 +1958,11 @@ in {
|
|||
|
||||
cufflinks = callPackage ../development/python-modules/cufflinks { };
|
||||
|
||||
cupy = callPackage ../development/python-modules/cupy { };
|
||||
cupy = callPackage ../development/python-modules/cupy {
|
||||
# cupy doesn't build on gcc11. CUDA 11.3 is the last version to use
|
||||
# pre-gcc11, in particular gcc9.
|
||||
cudaPackages = pkgs.cudaPackages_11_3;
|
||||
};
|
||||
|
||||
curio = callPackage ../development/python-modules/curio { };
|
||||
|
||||
|
|
Loading…
Reference in a new issue