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

47 lines
891 B
Nix
Raw Normal View History

{ stdenv, buildPythonPackage
2017-12-28 16:42:53 +00:00
, fetchPypi, isPy3k, linuxPackages, gcc5
, fastrlock, numpy, six, wheel, pytest, mock
, cudatoolkit, cudnn, nccl
}:
buildPythonPackage rec {
pname = "cupy";
2018-10-06 10:56:16 +00:00
version = "4.4.1";
2017-12-28 16:42:53 +00:00
src = fetchPypi {
inherit pname version;
2018-10-06 10:56:16 +00:00
sha256 = "d46a3eea628a17b9c3f446e4b13513a1f0cc0b9930214417b41c90dcf0bb427f";
2017-12-28 16:42:53 +00:00
};
checkInputs = [
pytest
mock
];
nativeBuildInputs = [
gcc5
];
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 ];
};
}