python37Packages.cupy: 5.2.0 -> 5.4.0 (#59651)

* python37Packages.cupy: 5.2.0 -> 5.3.0

Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/python3.7-cupy/versions

* pythonPackages.cupy: use default gcc instead of gcc5

* pythonPackages.cupy: build with CUDA10.0

* pythonPackages.cupy: 5.3.0 -> 5.4.0
This commit is contained in:
R. RyanTM
2019-05-27 06:20:34 -07:00
committed by Renaud
parent b301df76a4
commit 131b8b9b8b
2 changed files with 6 additions and 10 deletions

View File

@@ -1,16 +1,16 @@
{ stdenv, buildPythonPackage
, fetchPypi, isPy3k, linuxPackages, gcc5
, fetchPypi, isPy3k, linuxPackages
, fastrlock, numpy, six, wheel, pytest, mock
, cudatoolkit, cudnn, nccl
}:
buildPythonPackage rec {
pname = "cupy";
version = "5.2.0";
version = "5.4.0";
src = fetchPypi {
inherit pname version;
sha256 = "664acff0e1094f0135acca8899318d300258b704e049b1ef0c59154912da53b2";
sha256 = "1qms1kmzr543hz30jmcmx20cf9xbgzl97a9k44xizsk785dwakbn";
};
checkInputs = [
@@ -18,10 +18,6 @@ buildPythonPackage rec {
mock
];
nativeBuildInputs = [
gcc5
];
propagatedBuildInputs = [
cudatoolkit
cudnn