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

51 lines
986 B
Nix
Raw Normal View History

{ lib, 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";
2021-01-28 19:20:40 +00:00
version = "8.4.0";
disabled = !isPy3k;
2017-12-28 16:42:53 +00:00
src = fetchPypi {
inherit pname version;
2021-01-28 19:20:40 +00:00
sha256 = "58d19af6b2e83388d4f0f6ca4226bae4b947920d2ca4951c2eddc8bc78abf66b";
2017-12-28 16:42:53 +00:00
};
checkInputs = [
pytest
mock
];
preConfigure = ''
export CUDA_PATH=${cudatoolkit}
2020-08-25 03:07:09 +01:00
'';
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;
meta = with lib; {
2017-12-28 16:42:53 +00:00
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 ];
};
}