nixpkgs/pkgs/development/python-modules/cupy/default.nix

50 lines
975 B
Nix
Raw Normal View History

{ stdenv, buildPythonPackage
, fetchPypi, isPy3k, linuxPackages
, fastrlock, numpy, six, wheel, pytest, mock, setuptools
2017-12-28 16:42:53 +00:00
, cudatoolkit, cudnn, nccl
}:
buildPythonPackage rec {
pname = "cupy";
2020-06-06 07:47:02 +01:00
version = "7.5.0";
2017-12-28 16:42:53 +00:00
src = fetchPypi {
inherit pname version;
2020-06-06 07:47:02 +01:00
sha256 = "243254a1607e19ca55191c4cca4c0f2b143e1d5914e2a1bc9e3f715e7ccafc41";
2017-12-28 16:42:53 +00:00
};
checkInputs = [
pytest
mock
];
preConfigure = ''
export CUDA_PATH=${cudatoolkit}
'';
2017-12-28 16:42:53 +00:00
propagatedBuildInputs = [
cudatoolkit
cudnn
linuxPackages.nvidia_x11
nccl
fastrlock
numpy
six
setuptools
2017-12-28 16:42:53 +00:00
wheel
];
# In python3, test was failed...
doCheck = !isPy3k;
enableParallelBuilding = true;
2017-12-28 16:42:53 +00:00
meta = with stdenv.lib; {
description = "A NumPy-compatible matrix library accelerated by CUDA";
homepage = "https://cupy.chainer.org/";
2017-12-28 16:42:53 +00:00
license = licenses.mit;
platforms = [ "x86_64-linux" ];
maintainers = with maintainers; [ hyphon81 ];
};
}