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

37 lines
768 B
Nix
Raw Normal View History

{ stdenv, lib
2017-12-28 16:43:19 +00:00
, buildPythonPackage, fetchPypi, isPy3k
, filelock, protobuf, numpy, pytest, mock
, cupy, cudaSupport ? false
}:
buildPythonPackage rec {
pname = "chainer";
2019-10-24 06:47:27 +00:00
version = "6.4.0";
2017-12-28 16:43:19 +00:00
src = fetchPypi {
inherit pname version;
2019-10-24 06:47:27 +00:00
sha256 = "dacbcaa361cebdfbf6f212d138570333611b8f5de553093b1752c578b022a774";
2017-12-28 16:43:19 +00:00
};
checkInputs = [
pytest
mock
];
propagatedBuildInputs = [
filelock
protobuf
numpy
] ++ lib.optionals cudaSupport [ cupy ];
# In python3, test was failed...
doCheck = !isPy3k;
meta = with stdenv.lib; {
description = "A flexible framework of neural networks for deep learning";
homepage = https://chainer.org/;
license = licenses.mit;
maintainers = with maintainers; [ hyphon81 ];
};
}