mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 07:46:09 +01:00
46 lines
891 B
Nix
46 lines
891 B
Nix
{ stdenv, buildPythonPackage
|
|
, fetchPypi, isPy3k, linuxPackages, gcc5
|
|
, fastrlock, numpy, six, wheel, pytest, mock
|
|
, cudatoolkit, cudnn, nccl
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "cupy";
|
|
version = "5.0.0";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "557e665d6f2e74e21987b6736d580ec919f51205623fe3d79df06b9d22b3e09d";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|