nixpkgs/pkgs/development/python-modules/cupy/default.nix
2018-02-03 17:43:29 +01:00

47 lines
899 B
Nix

{ stdenv, python, buildPythonPackage
, fetchPypi, isPy3k, linuxPackages, gcc5
, fastrlock, numpy, six, wheel, pytest, mock
, cudatoolkit, cudnn, nccl
}:
buildPythonPackage rec {
pname = "cupy";
version = "2.3.0";
src = fetchPypi {
inherit pname version;
sha256 = "7426f6332cb01513d2a6a687792dfa17c678ff64dd1b19b04559ddd5672c833f";
};
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 ];
};
}