{ stdenv, buildPythonPackage , fetchPypi, isPy3k, linuxPackages , fastrlock, numpy, six, wheel, pytest, mock , cudatoolkit, cudnn, nccl }: buildPythonPackage rec { pname = "cupy"; version = "6.0.0"; src = fetchPypi { inherit pname version; sha256 = "168xi92pfk80n2k47qc5zim7jai3kcmj3j157fynz9c8dfw4sbn4"; }; checkInputs = [ pytest mock ]; propagatedBuildInputs = [ cudatoolkit cudnn linuxPackages.nvidia_x11 nccl fastrlock numpy six wheel ]; # In python3, test was failed... doCheck = !isPy3k; meta = with stdenv.lib; { description = "A NumPy-compatible matrix library accelerated by CUDA"; homepage = https://cupy.chainer.org/; license = licenses.mit; platforms = [ "x86_64-linux" ]; maintainers = with maintainers; [ hyphon81 ]; }; }